Tag: databases
Questions Related to databases
-
- To show current warehouse product output levels on an assembly line
-
- To track realtime sales figures
-
- To help users make better business decisions
-
- To show orders currently being processed
-
- To keep track of business contacts and leads
-
- Comprehensive data on operations from all departments
-
- A subset of a data warehouse
-
- Individual invoices
-
- Accounting profit and loss reports
-
- Data managed by a particular department of the company
-
- Data fields that reference numeric data should be indexed.
-
- Only data fields that change over time should be indexed.
-
- Data fields that are referenced by queries should be indexed.
-
- All data fields should be indexed.
-
- Data fields that reference text and large object data should be indexed.
-
- Data about an organization's staff
-
- Data about accounting entries
-
- Data about an organization's structure
-
- Data about an organization's products
-
- Data about transaction activity
-
- Capture and store data rules.
-
- Generate programs to extract data from a source system.
-
- Store data warehouse database designs.
-
- Store the layout or design of the load files.
-
- Generate programs to transform data.
-
- Bollenger bands
-
- Averaging
-
- Prediction joins
-
- Analytic parsing
-
- Relative strength
-
- Snowflake queries are faster than the star schema.
-
- Snowflake links each table to each other, while star schema links each table to a central table.
-
- Snowflake has additional tables linked to the outer tables of a star schema.
-
- Snowflake is more optimized for a data warehouse.
-
- Snowflake is less complicated than star schema.
-
- Database backups
-
- Time an uncommon query will take
-
- People entering data into the source database
-
- Number of tables in the data mart, so they do not exceed six tables
-
- Requirements of the department that will use the data mart
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
-
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