Viewing 15 posts - 4,006 through 4,020 (of 6,679 total)
If you are consolidating on a single instance of SQL Server, your only option is going to be scripting out the jobs and rebuilding on the new server.
March 24, 2010 at 2:51 pm
Why would you want to do this?
There is a public role available - it does not have any permissions by default. You could add permissions to this role, but...
March 24, 2010 at 2:42 pm
Litespeed comes with their own xp procedure to delete litespeed based backup files. Look in the documentation for Litespeed and it will show you how to script it out...
March 24, 2010 at 1:00 pm
Add to the list:
Any query hints? If so, is it required and the documentation in place explaining why?
March 23, 2010 at 7:21 pm
If you are migrating off of this system, why do you care? Once you have moved to the new system wouldn't you just retire the existing system and delete...
March 23, 2010 at 2:04 pm
I agree with Jason...
Next items:
Are all objects schema qualified?
Are aliases defined and used?
Are there any functions being used in the where clause that would prevent index usage?
Are there any functions...
March 23, 2010 at 2:01 pm
Why do you want to return the space to the OS? Your database is going to grow - so why not keep the space for the future growth of...
March 23, 2010 at 1:01 pm
Yeah - I was afraid of that. And, no - I don't have any other suggestions - sorry.
March 23, 2010 at 7:03 am
Not sure this will work for your case, but you can lookup SOUNDEX and see if that gets you anywhere. Documentation here: http://msdn.microsoft.com/en-us/library/aa259235(SQL.80).aspx
March 22, 2010 at 9:54 pm
I wasn't clear on whether or not the problem is with your log file - or your data file. If it is your log file, how often are you...
March 22, 2010 at 9:46 pm
You are welcome - and thanks for the feedback, it is appreciated.
March 22, 2010 at 7:40 pm
Are you trying to backup across the network? Is SQL Server running under a domain user account that has the necessary rights to the folder being backed up to?
March 22, 2010 at 2:19 pm
Instead of using db_datareader, and then trying to remove all other access - it would be better to create your own role and add the specific rights you want to...
March 22, 2010 at 2:17 pm
Error 33 is telling you that the file is locked by another process. One of the reasons for that could be a compressed volume. Another possibility is the...
March 22, 2010 at 7:25 am
Digs (3/21/2010)
Whats with the ';' in the SQL statement'2000-01-01');
???
I dont use ';' in SQL 2005, should I ??
You should start getting in the habit of terminating your SQL statements...
March 21, 2010 at 3:38 pm
Viewing 15 posts - 4,006 through 4,020 (of 6,679 total)