Which one of the following is the purpose of Business Intelligence?
which one of the following forms the basis of a Dependent Data mart?
Which data fields should be indexed in a data warehouse?
Which one of the following is the most dynamic kind of business data that can be implemented in a database?
which one of the following is NOT a function of a Data Extraction tool?
Which one of the following mechanisms allows the Data Mining Extensions (DMX) to be used for predictions?
How is the Snowflake schema different from the star schema?
When creating Data Mart architecture, which one of the following items do you review?
What are the Text and Image Functions?A. PATINDEX,TEXTPTR,TEXTVALIDB. BINARY_CHECKSUM MIN ,CHECKSUM SUM ,CHECKSUM_AGG STDEV ,COUNT STDEVP ,COUNT_BIG C.BINARY_CHECKSUM MIN ,CHECKSUM SUM ,CHECKSUM_AGG STDEV ,TEXTPTR,TEXTVALID
A only
Both A nad B
B Only
Both B and C
Which is the correct query to find the Min, Max and 2nd Max in Sql server?
select min(field4) as Min,Max(field4) as Max,(select Max(field4) from table1 where field4 not in(Select Min(field4) from table1)) as 2nmax from table1
select min(field4) as Min,Max(field4) as Max,(select Min(field4) from table1 where field4 not in(Select Max(field4) from table1)) as 2nmax from table1
select min(field4) as Min,Max(field4) as Max,(select Max(field4) from table1 where field4 not in(Select Max(field4) from table1)) as 2nmax from table1
None of the Above