Viewing 15 posts - 1,906 through 1,920 (of 2,897 total)
george sibbald (5/1/2009)
May 1, 2009 at 1:46 pm
Here are the main table schemas (sorry for all the bandwidth - I tried to de-clutter it). The stored procedure is written to use a cursor for the table deletes...
May 1, 2009 at 12:31 pm
PaulB (4/27/2009)
What is your SQL Server version?
That's what I was wondering. Wasn't there a bug in the original version that was fixed by a leter Service pack ?
April 28, 2009 at 11:47 am
Good point. I'm not aware of any changes, but I'll look into it.
April 28, 2009 at 9:21 am
Does your package connect to a network file ? Maybe you don't have permission to a folder.
April 27, 2009 at 11:13 am
I could do that. But I wanted to leave the code as original as possible.
April 22, 2009 at 9:43 am
No blocking. There was a table scan on a 56,000 record table, but they run this every week without incident. I added indexes to fix that but no help. We...
April 17, 2009 at 8:55 am
Would the default trace have that information ?
April 17, 2009 at 5:17 am
GilaMonster (4/16/2009)
Since this is SQL 2005, rather use sys.objects and sys.sql_modules
Yes, I need to rewrite my little system scripts.
April 16, 2009 at 2:57 pm
I use this to search stored procedures. You could search on 'ALTER DATABASE'
-- Find the string 'xxxxxxxxxx' in Stored procedures then select 150 characters that contain it
-- the -25...
April 16, 2009 at 10:45 am
SQL Noob (4/6/2009)
homebrew01 (4/3/2009)
April 7, 2009 at 8:30 am
Perry Whittle (4/6/2009)
Homebrew01BTW what edition/version of vmware are you using?
Hi, we're on VMware ESX Server 3.5.0 and EqualLogic v4.0.6
April 7, 2009 at 4:21 am
After upgrading to 2005 I ran:
EXEC sp_dbcmptlevel @dbname ='DatabaseName', @new_cmptlevel = '90'
.
dbcc updateusage ('DatabaseName') with count_rows
.
use DatabaseName
.
exec sp_msforeachtable 'alter index all on ? rebuild WITH ( FILLFACTOR = 95,...
April 6, 2009 at 7:45 am
We just tried a full backup with Backup Exec to compare and that took 7 hours. A vast improvement ! With Redgate I had set compression to '0', but it...
April 3, 2009 at 4:05 pm
Restricted growth means it will grow up to the size you set. So if your file is 90 Gig, and restricted is set to 95, it still has 5 gig...
April 2, 2009 at 12:51 pm
Viewing 15 posts - 1,906 through 1,920 (of 2,897 total)