We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2
1)What is snowflake and what kind of database it is?
and explain the architecture of
snowflake 2)tell me some performance tunning techniques in snowflake? 3)how can you handle if the data coming from file is exceeds the length of feild in the table?
4)write a query to retervie data that was deleted from a table?
5)what are secure views in snowflake and what is different between normal view and materalized view? 6)how to refresh the data in materalized views?
7)what is different between star schema and snowflake schema
8)what is the retention period in business critical edition and how can you increase or reduce it? 9)what is snowpipe and write syntax for creating snowpipe 10)what is the virtual warehouse size you are using in your project?how many clusters?
11)what is verticaal scalling and horizontal scalling?
12)what is different caches available in snowflake? 13)how the streams tracks the changes occuring a table? 14)how can you implement column level security in snowflake? 15)query to delete duplicate records from a table? 16)what is different between union and union all? 17)below are two tables with one column in each what is the number of records after each type of join? TABLE A TABLE B 1 1 2 2 1 2 3 4 NULL NULL
18)query to fetch dept wise 3rd highest salary
19)what is differnt between coalesce and decode 20)tell me some performance tuning techniques of sql queries? 21)write the syntax of a copy command to load a file into snowflake table? 22)can you use where caluse in copy command? 23)how can you load a json file to snowflake? 24)tell me scd implementation 25)What is the difference between owner and caller in Snowflake stored procedure? 26)what is data mart what is important of data mart? 27)what is differnt between ETL AND ELT 28)UPDATE the employee comission witin emp table based on following conditions by using decode function a)if job='clerk' then update commission-->10% of sal b)if job='salesman' then update commission-->20% of sal c)if job='Analyst' then update commission-->30% of sal else update commission 40% of sal
29)this is query select decode(1,2,3,4,5,6,7,8) from dual what is output?
30)what is datawarehousing and what is need of datawarehouse
31)a)query an alphabetically orderd list of all names in occupation table
immediately followed by the first letter of each profession in the parentheses for example :James(D),John(T),Jenny(S) and so on. b)Query the number of occurance of each occupations.Sort the occurance in ascending order ,and output them in the following format INPUT (SAMPLE_OUTPUT) ========================= =========================== Name Occupation Name James Data Scientist James(D) John Tableau Developer John(T) Jenny SQL Developer Jenny(S) Andrea Data Scientist Andrea(D) Sylvia SQL Developer Sylvia(S) Mathew Tableau Developer Mathew(M) Maria Tableau Developer Maria(M)
write query sample _output like this
b)Query the number of occurance of each occupations.Sort the occurance in ascending
order ,and output them in the following format:
there are a total of 2 Data Scientist
there are a total of 2 SQL Developer there are a total of 3 Tableau Developer