Viewing 15 posts - 526 through 540 (of 1,166 total)
I use custom log shipping on my servers...
YOu can use the following...
http://www.sqlservercentral.com/columnists/ckempster/customlogshipping.asp
MohammedU
Microsoft SQL Server MVP
January 19, 2007 at 10:34 pm
sysobjvalues table is system table and I don't think you can do anything against this in 2005 because you can access directly system tables in 2005.
I think you access the...
MohammedU
Microsoft SQL Server MVP
January 19, 2007 at 1:51 pm
Login might be expired...
Check the login properties...
MohammedU
Microsoft SQL Server MVP
January 19, 2007 at 1:36 pm
Did you test the database mail first before using in TRIGGER?
If trigger is not working properly then transaction will be left open..
you don't need to restart the sql to close...
MohammedU
Microsoft SQL Server MVP
January 19, 2007 at 1:34 pm
It uses full scan mean 100%...
you can with DBCC SHOW_STATISTICS command in your output check for ROWS and ROWS SAMPLED columns to get the info...
MohammedU
Microsoft SQL Server MVP
January 19, 2007 at 1:21 pm
Nothing to worry...in many forums this one discussed..
As you know sql server uses time from OS so as long as os got the patch sql should be fine.
Note: I heard...
MohammedU
Microsoft SQL Server MVP
January 19, 2007 at 1:05 pm
I have not used it so for... but based on the size it should not be a problem.
If there is any datatype changing will not take much time due to...
MohammedU
Microsoft SQL Server MVP
January 19, 2007 at 1:03 pm
For cleanup you can follow the following KB article...
How to uninstall an instance of SQL Server 2005 manually
http://support.microsoft.com/kb/909967
MohammedU
Microsoft SQL Server MVP
January 19, 2007 at 12:58 pm
May by want to use SQL authentication![]()
MohammedU
Microsoft SQL Server MVP
January 19, 2007 at 12:54 pm
Might be your Maintenance plan has the option to repair the db incase of corruption..
Please remove it because SQL server tries bring bring the db in single user mode...when it...
MohammedU
Microsoft SQL Server MVP
January 18, 2007 at 11:16 pm
When you are using doubel quotes you have to SET QUOTED_IDENTIFIER OFF....
set quoted_identifier off
select ("master..xp_ss_backup "+@lvDBName+" TO DISK = '\\"+@lvNTServerName+"\Backup$\"+@lvDBName+"\"+@lvSQLServerName+"_"+@lvDBName+"_DBBackup.BAK WITH DESCRIPTION = 'Database', INIT, STATS = 10")
MohammedU
Microsoft SQL Server MVP
January 18, 2007 at 11:05 pm
You can use replication or custom log shipping (backup/restore)...
MohammedU
Microsoft SQL Server MVP
January 18, 2007 at 10:50 pm
MohammedU
Microsoft SQL Server MVP
January 18, 2007 at 10:46 pm
You can restore the publisher db onto subscriber or you can copy the required tables to subscriber first when you create subscriber specify that the subscriber has schema and data...
MohammedU
Microsoft SQL Server MVP
January 18, 2007 at 6:04 pm
All in one tool called SQL Server Management Studion (SSMS).
You can install Express but it has some limitations... it will not have sql agent, MPs, etc..
For practive and learning purpose...
MohammedU
Microsoft SQL Server MVP
January 18, 2007 at 5:47 pm
Viewing 15 posts - 526 through 540 (of 1,166 total)