Viewing 12 posts - 1 through 12 (of 12 total)
Hi,
as far as I am informed the "recompile" is not nested, if you recompile the topmost procedure (with sp_recompile or changing the procedure) the nested procedures are not recompiled.
But if...
April 5, 2011 at 7:00 am
Hi,
I have another query that offers nearly the same output but what I miss here are two informations.
is_unique (sys.indexes) because sometimes you do have an unique index for consistency even...
February 4, 2011 at 5:11 am
I am not that deep into the sql server lock system but as far as I know every update is running in an implicit transaction that locks the specific rows...
January 13, 2011 at 2:58 am
I can recommend this document
http://msdn.microsoft.com/en-us/library/dd894051(v=sql.100).aspx
because there are a few good hints about when to use which compressiontype. I am sure you can write a script to do it automatically but...
January 13, 2011 at 2:45 am
Intellisense is not an improvement if you have objectsnames in your database starting with "TOP" or "ON" .... SQL-Promt from RedGate is much better if you like using Intellisense.
Nice features...
January 13, 2011 at 2:13 am
Seems like a good way to go but keep in mind to do a complete rebuild once in a while, reorganize won't "refresh" the Fillfactor (except if you are deleting...
January 12, 2011 at 9:21 am
I made a few tests with 1608 pages of data (+10 indexpages) , one int column only, 1 mio rows.
The TempDB did not grow but the datafile is bigger than...
January 12, 2011 at 5:45 am
Hi,
I am doing rebuilds/reorgs on the live database in our company and have the same issues/things seen and a few ideas how it is working.
Sort in TempDB I have not...
January 11, 2011 at 9:02 am
Prakash-205770 (12/9/2010)
December 10, 2010 at 1:51 am
Hi,
I am wondering how you send you emails. Do you send them via an exchange-server inside your network? Or do you have some external provider sending your mails?
In the last...
December 9, 2010 at 3:26 am
cjeremy74 (7/3/2008)
I actually did use this about a month ago... we had a new policy implemented that allowed us to delete a couple of years worth of data out...
July 3, 2008 at 6:53 am
I am wondering, why not use SET ROWCOUNT ?
Normally I am using rowcount because it is really easy to handle.
Set Rowcount @n
select 1
While @@ROWCOUNT > 0
BEGIN
...
July 3, 2008 at 1:58 am
Viewing 12 posts - 1 through 12 (of 12 total)