Can we create nonclustered index in a table without
creating a clustered index

Answer Posted / neelesh kumar

Yes, we can. for example we can use unique constraint
without any clustered index.

Is This Answer Correct ?    16 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to return the date part only from a sql server datetime datatype?

566


What is the difference between left and right outer join?

535


Explain log shipping and mention its advantages.

587


How self join is different from outer join?

596


What is difference between delete & truncate commands?

538






What is an entity-relationship diagram (erd)?

579


What is deploy, process and build? : sql server analysis services, ssas

560


What is the purpose of indexing?

591


What is key attribute?

502


Explain something about security and SQL Azure?

88


What is a collation in ms sql server?

541


How to backup SQL Server Reporting Services ?

103


What is difference between count (*) and count column?

511


Is it possible to call a stored procedure within a stored procedure?

548


This question asked during interview, 2) At the end of each month, a new table is created for each bank that contains monthly metrics consolidated at the account level. The table naming convention is bankX_YYYYMM where X represents the numeric designation of the bank and YYYYMM indicates the 4 digit year and 2 digit month. The tables contain the following fields: name data type description account text account number registered boolean indicates whether the account is registered num_trans integer number of transactions made during the time period spend numeric(9,2) total spend during the time period a) Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009. b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010 not sure what is correct answer and how to solve?

2008