Viewing 15 posts - 496 through 510 (of 2,387 total)
Streamline Object ownership chain
Refresh view automatically when underline objects changed.
Cleanup job / maintenance history
Remove old differential backup after certain period
Recommaend index rebuild
February 12, 2004 at 9:55 am
You have to wait for database be recovered.
February 12, 2004 at 7:54 am
"So if I drop and recreate the index in the middle of the operation the users go for a toss."
Your create index command will be blocked if the index is being...
February 12, 2004 at 7:22 am
sp_configure 'allow updates', 1
reconfigure with override
use msdb
update sysjobs set originating_server = 'new server name' where originating_server = 'old server name'
sp_configure 'allow updates', 0
reconfigure with override
February 12, 2004 at 7:12 am
You may create your own version of sp_help_job.
Do you want to be notified before going to next step? What do you try to achieve?
February 11, 2004 at 12:59 pm
Unfortunately, You can't.
February 11, 2004 at 10:21 am
The client has to input their application name is the DSN connection string. Otherwise, It wouldn't show up in sysprocesses.
February 11, 2004 at 10:19 am
1. To move databases, use backup/restore or sp_detach_db/sp_attach_db
2. Move logins, http://support.microsoft.com/default.aspx?scid=kb;en-us;246133&Product=sql2k
3. To move jobs, script all jobs and apply it to new server.
4. Open each DTS package at source...
February 11, 2004 at 10:17 am
Yes. It does. Drop and receate each indexes are an alternative.
February 11, 2004 at 9:04 am
Check "set ansi_nulls" setting.
February 11, 2004 at 8:06 am
Run dbcc dbreindex again after dbcc checktable.
Or drop all indexes and rebuild them.
February 11, 2004 at 8:02 am
Something more.
Patch upadte.
Run SQL Server service as local sysytem a/c.
Disable MSDTC if you don't need it.
Disable the Windows guest account.
· Rename the administrator account....
February 11, 2004 at 7:48 am
February 11, 2004 at 7:32 am
It looks like you have problem with database integrity. Run dbcc checkdb to your database and dbcc checktable to 'FinlAvgCalc2' to try to fix it.
For details, See BOL DBCC CHECKDB...
February 11, 2004 at 7:21 am
Here is the script I used to trace the user access to my system. I schedued it to run every one minutes. It may not complete statisfy your requirement.
declare @host...
February 11, 2004 at 7:18 am
Viewing 15 posts - 496 through 510 (of 2,387 total)