Viewing 15 posts - 31 through 45 (of 63 total)
Have you tried updateusage with COUNT_ROWS option?
May 3, 2004 at 12:56 pm
Check this article from Microsoft:
http://support.microsoft.com/default.aspx?scid=kb;en-us;319892
April 22, 2004 at 3:31 pm
Brett,
Can you, please, try to run your xp_cmdshell '...' from QA again and post the exact error message?
I also sent you a private message with more questions.
April 16, 2004 at 2:56 pm
Brett,
First of all, let's try to execute the command successfully from Query Analyzer.
This is from BOL:
"When xp_cmdshell is invoked by a user who is a member of the sysadmin fixed...
April 16, 2004 at 12:45 pm
What's the Windows account under which your SQL Server is running? Does it have permissions to see your source and destination servers and folders?
April 15, 2004 at 4:09 pm
Try:
UPDATE OutstandingInvoices
SET Status = 'Cleared'
FROM ClearedInvoices C INNER JOIN OutstandingInvoices O ON C.InvoiceNumber = O.InvoiceNumber
April 14, 2004 at 4:22 pm
The main point of the question was to bring the database up as quickly as possible. Then the answer is correct - the attach (single file attach in this case)...
April 13, 2004 at 10:12 am
Neil,
Instead of "running" the view in the Enterprise Manager try to use SQL Query Analyzer. After you've created the view open Query Analyzer and run
SELECT * from <YourViewName>
Query Analyzer doesn't...
April 7, 2004 at 3:55 pm
Run rebuild master utility. Then if you have a backup of your master you can restore it, otherwise you'll have to re-configure your server and re-attach all DBs.
March 3, 2004 at 8:40 pm
First of all, Microsoft doesn't recommend to backup to compressed folders (with no clear explanation why)!
On one of our servers we had to compressed the backup folders couple month ago when...
March 3, 2004 at 5:29 pm
Copy data files from SQL Server CD to a harddrive and make sure that Read-Only attribute is unchecked.
See http://support.microsoft.com/default.aspx?scid=kb;en-us;273572 for details
February 24, 2004 at 9:39 am
Check this article from MSDN about logins transfer:
http://support.microsoft.com/default.aspx?scid=kb;en-us;246133
HOW TO: Transfer Logins and Passwords Between Instances of SQL Server
It's up to you to decide if you want to transfer master/model/msdb...
January 5, 2004 at 3:10 pm
With restore you have to remember that you can only restore the full backup for master, model, msdb.
The idea is that the data in system databases are pretty stable and...
December 12, 2003 at 12:41 pm
Both master and msdb have simple recovery model. It means that you can't backup transaction logs for those DBs (I'm wondering how it was working before). The maintenace plan wizard...
December 11, 2003 at 5:16 pm
Viewing 15 posts - 31 through 45 (of 63 total)