Viewing 15 posts - 136 through 150 (of 596 total)
First change the recovery model to SIMPLE. If you aren't going to run transaction log backups then don't set recovery to FULL. Next, use the command BACKUP...
December 13, 2007 at 8:45 am
Tolerance and acceptance that others may not share your point of view would be nice.
December 7, 2007 at 11:10 am
Merry Christmas/Happy Holidays to all
In terms of material stuff I'm pretty satisfied although noise-cancelling headphones might help me concentrate in this cube-world.
In other ideas I've decided to give...
December 7, 2007 at 9:01 am
ok... but you are not writing the cursor. Why does the existance of a cursor matter?
To avoid use something like:
DECLARE @objName varchar(50)
DECLARE @cmd nvarchar(250)
SET@objName = ''
WHILE@objName IS NOT...
November 30, 2007 at 12:13 pm
Sure see BOL for more info on sp_MSforeachdb
Here is a sample:
EXEC sp_MSforeachdb "USE ? IF db_name() NOT IN ('master', 'tempdb', 'model', 'msdb' )
begin select db_name() EXEC sp_updatestats end...
November 30, 2007 at 10:28 am
You do not need to apply any Service Packs before migrating to SQL 2005. SQL 2005 is a new install and your existing databases will migrate whether they are...
November 9, 2007 at 7:39 am
Thanks but as I mentioned I have switched this feature on. If I hadn't switched this on I would have got the error message:
Msg 15281, Level 16, State 1,...
November 8, 2007 at 10:59 am
Its too bad you don't have a test environment. I suggest you create one especially for SP4.
For some tips what to look for see
http://sqlserver2000.databases.aspfaq.com/what-do-i-need-to-know-about-sql-server-2000-sp4.html
Some items on forums...
November 8, 2007 at 10:54 am
xp_cmdshell can be used to execute DOS commands. SO assuming you have zip software installed that has a command line version (like Winzip or 7-Zip and I'm sure others...
November 8, 2007 at 10:32 am
Everytime I see a problem like this (we are using a maintenance plan and get this error) I add it to my list of why I never use maintenance...
November 7, 2007 at 9:37 am
Great idea. I would like to further suggest that the daily newsletter no longer provide the answer to yesterdays question. It might lead to some odd behavior for...
November 6, 2007 at 8:35 am
Is this production? I can understand having multiple versions in test (development) or UAT but I've never seen multiple versions in production. If only one of the databases...
November 1, 2007 at 2:12 pm
You may be able to avoid using the port number if you upgrade MDAC to 2.6 or later. See http://support.microsoft.com/kb/265808 for more info
October 29, 2007 at 8:17 am
You are correct they are not encrypted. I know Red Gate's SQL backup can encrypt if you want. I assume other 3rd party backup products could also do...
October 23, 2007 at 3:10 pm
If your SQL Server is on domain A and you authenticate to domain B on your workstation, you should be able to connect to the SQL Server if there is...
October 23, 2007 at 2:53 pm
Viewing 15 posts - 136 through 150 (of 596 total)