Viewing 15 posts - 91 through 105 (of 285 total)
What is stopping you not to have a normalization, any business rule/your supervisor/anything? A table with non cluster index is called heap which will have many draw backs like fragmentation...
September 15, 2011 at 5:16 am
You may please look into the below likn:
September 7, 2011 at 10:50 pm
only4mithunc (9/7/2011)
I know that there are two types of temp table local and Global ( singe and double # ) , and I know that local temp table is...
September 7, 2011 at 6:54 am
Ohhh Okei, I was not able to find a relation. Thanks for correcting me. My sincere apologies .I own my mistake.
September 7, 2011 at 6:31 am
As Grant suggested these are two separate . However you can think for something to get a relation...
Select A.name,OBJECT_NAME(A.parent_object_id),key_index_id,B.type_DESC From sys.foreign_keys a
INNER JOIN sys.indexes b oN a.parent_object_id = b.object_id AND...
September 7, 2011 at 6:13 am
When you make a computed column as persisted, it would consume more space in disk. If Persisted property is off then calculated column will be just a virtual column. No...
September 7, 2011 at 2:38 am
SELECT ROUND(((99999999 - 1000 -1) * RAND() + 1000), 0) ,ROUND(((99999999 - 1000 -1) * RAND() + 1000), 0)
Is this something you are looking for? Why do you want to...
September 7, 2011 at 12:50 am
If the statistics are not up to dat due to massive data skew in your large indexes, the rebuild index will not parallelize properly.
I would recommand you to update the...
September 6, 2011 at 5:35 am
Hi SQLSavy, here is a document for you.It would help you start with your preparations.
September 6, 2011 at 5:26 am
As Grant suggested always do the maintenance activities like stats update, defrg, rebuild at the slowest time of your day, even taking the system down for some time for the...
September 6, 2011 at 5:24 am
Sorting will not be 100% ALWAYS unless you provide with an ORDER by.
September 6, 2011 at 2:16 am
You can force the index using option. However its not advicable to do so until you are very sure of the same. (I always believe SQL will do better job...
September 5, 2011 at 2:13 am
Did you check the test connection in ODBC driver? If not please test that first and try executing the same.
September 5, 2011 at 12:08 am
Few Questions...
1. How many records are there in the table?
2. Why cant you have only order_total alone in the included and see the usage of index rather than giving all...
September 5, 2011 at 12:00 am
Is this the below you looking for:
create Table tblEMPLOYEE
(ID int, FIRSTNAME Varchar(50))
Insert into tblEMPLOYEE Values( 1,'John')
Insert into tblEMPLOYEE Values( 2,'Lee')
create Table tblTRAINMODULE
(ID int, MODULE_NAME Varchar(50))
Insert into tblTRAINMODULE Values(...
September 2, 2011 at 5:39 am
Viewing 15 posts - 91 through 105 (of 285 total)