Viewing 15 posts - 43,141 through 43,155 (of 49,571 total)
davidm (11/13/2008)
As for backing up to disk--I agree with that method--now I need to sell it to the IT Manager.
Shouldn't be too hard. Point out to him that at...
November 13, 2008 at 10:01 am
Loner (11/13/2008)
I plan to put the log file and tempdb both on the same disk with RAID 10.
Not a good idea if there's a lot of TempDB activity.
How busy...
November 13, 2008 at 9:58 am
jcrawf02 (11/13/2008)
now that I've read this thread, gotta go fix something . . .
😀 :hehe:
November 13, 2008 at 9:53 am
Every database should have this on in SQL 2000. In 2005 it's been replaced by page checksums which should be used instead.
It's a way for SQL to detect that a...
November 13, 2008 at 9:40 am
http://sqlinthewild.co.za/index.php/2008/11/04/what-are-statistics-and-why-do-we-need-them/
You can't change the frequency. The % of changes that kicks off a stats update is hardcoded. You can update stats manually using UPDATE STATISTICS.
November 13, 2008 at 9:36 am
jcrawf02 (11/13/2008)
November 13, 2008 at 9:25 am
Try doing an update usage. On SQL 2000 the space use and space available metadata was sometimes inaccurate. Updateusage will fix that.
DBCC UPDATEUSAGE(< Database name > )
November 13, 2008 at 7:56 am
Updating stats won't change the scan density. That's a measure of how much extent fragmentation there is. Stats just contain the data distribution in the columns.
Try a rebuild instead of...
November 13, 2008 at 7:54 am
The_SQL_DBA (11/13/2008)
Place the tempdb on the RIAD 1+0 to increase throughput. Then the data files on RAID 1+0 also. The backups can go to RAID 5.Thanks!!
How do you propose doing...
November 13, 2008 at 7:49 am
Did you set it to multi-user after syncing the logins and users?
SQL won't just set a DB to single-user, Someone would have had to run a command to do so.
November 13, 2008 at 7:44 am
Post the trigger code please, the table structure a couple of example insert statements and what you want Table_2 to look like afterwards.
November 13, 2008 at 7:36 am
Continued here:
November 13, 2008 at 5:02 am
Not sure I understand you fully.
You have a database on a SQL 2000 server that's giving errors?
Where does SQL express come in here? A different database attached to the 2005...
November 13, 2008 at 5:01 am
You originally posted in in one of the SQL 2005 forums. I asked the moderator to move it.
November 13, 2008 at 4:56 am
That doesn't sound like a login problem. It sounds like a performance problem with that procedure. It doesn't return quickly enough and the front end times out. It may be...
November 13, 2008 at 4:55 am
Viewing 15 posts - 43,141 through 43,155 (of 49,571 total)