Viewing 15 posts - 151 through 165 (of 468 total)
GilaMonster (10/22/2011)
p.s. As a consultant, accepting work that you don't know how to do is not a particularly good idea. Mess up and that's a client that won't want your...
October 22, 2011 at 12:54 pm
thanks for that, so would the following query give me the size of the data cache ( not plans or anything)?
select count(*)*8/1024 AS 'Cached Size (MB)' ...
October 20, 2011 at 3:00 pm
im on my local machine with my local instance, and i got the error: Cannot connect to Admin:.
I only get it when DAC is disabled. i think i...
October 14, 2011 at 10:29 am
Absoluely spot on Elliot, thanks a mil.
Next question. SSIS is a shared component. if i installed a named instance first and then the default, would SSIS be part of the...
October 11, 2011 at 10:34 am
Lowell (10/11/2011)
Winston i think it's a scripting option that is turned off by default;if you change these settings, do you get the script you are expecting?
This is perfect ( well,...
October 11, 2011 at 4:42 am
Jayanth_Kurup (9/16/2011)
WITH (<single_partition_rebuild_index_option>)
SORT_IN_TEMPDB, MAXDOP, and DATA_COMPRESSION are the options that can be specified when you rebuild a single partition (PARTITION = n). XML indexes cannot be...
September 16, 2011 at 3:36 am
Your still copying data via a new structure. Can you just alter the table ter the table to remove the partition layout?
September 15, 2011 at 6:01 am
Cool, thanks for the confirmation. For a moment i wondered how i could be in the industry for a number of years and not know about inserting into indexes!
September 15, 2011 at 3:40 am
but does "insert into a clustered index" basically mean "insert into a table with a clustered index"?
I dont know why he would specify to insert into a clustered index.
September 15, 2011 at 3:33 am
Connections are expensive to create in sql server and this is why sql server uses Connection Pooling by default.
Connections that are not in use are put into a pool and...
September 6, 2011 at 2:55 pm
I have found the row count per partition. If i cross apply on the function sys.dm_db_index_physical_stats I can then pull the record_count which is the rows per partition.
I still cannot...
August 26, 2011 at 4:33 am
Thanks Gail! Now that my suspicions are confirmed I can expirement further.
August 24, 2011 at 8:52 am
super useful! thanks!
August 19, 2011 at 3:18 am
Figured it out. you need to use the fully qualified path to the ini file, even if your PWD is the one the ini file is in. strange!
August 18, 2011 at 7:31 am
serverside trace thats always running, looking for deadlock events, deadlock chains and lock timeouts.
For extra points describe how the trace files are set to a max size to ensure they...
August 9, 2011 at 4:20 am
Viewing 15 posts - 151 through 165 (of 468 total)