Viewing 15 posts - 1,726 through 1,740 (of 2,904 total)
When we had a cluster, we used Norton AV. Now that we can't use the cluster, we still use Norton AV.
When we first set it up, we had lots of...
November 16, 2004 at 1:21 pm
You need to give us more information about your setup.
You have a cluster, so you are using shared drives. Are the log files on the shared drives?
-SQLBill
November 16, 2004 at 7:06 am
If the restore fails, you can't use the database - it never restored. SQL Server is usually an 'all-or-nothing' system.
-SQLBill
November 16, 2004 at 7:02 am
I suggest beginning your code with:
SET DATEFORMAT YMD
<rest of code>
Setting the dateformat tells SQL Server how to interpret the date value you are providing.
-SQLBill
November 15, 2004 at 7:36 am
Since single-user means only one connection can exist, yes it is very restrictive. You should be able to restore using single-user mode without any problem.
-SQLBill
November 15, 2004 at 7:32 am
I don't use log shipping, but if it is running at the same time your backup is running, then YES that's most likely the problem.
How to test? Change the time...
November 15, 2004 at 7:30 am
Most likely you are having network problems...too much happening on the network.
You could also check what's happening on the computer with SQL Server. CTRL-ALT-DEL and find Task Manager. Is your...
November 12, 2004 at 10:59 am
You do one of two things....
1. you replace <device name> with the path you want to use:
BACKUP LOG mydb TO 'C:\Backups\mydblog.bak'
2. you create a 'dump device' and use that.
Refer to...
November 12, 2004 at 10:55 am
Sukhoi,
Please DON'T post the code here. This is a SQL Server forum not an Access forum.
However, if you really must post it....this site does have an Access forum, so post...
November 5, 2004 at 12:07 pm
I backup my SQL Server databases (and logs) to hard drive and then use Veritas to copy those backup files to tape.
-SQLBill
November 3, 2004 at 8:59 am
Sometimes shrinking the database and/or log doesn't happen fast enough. When you absolutely need to shrink it now, truncateonly is the best choice. But I always advocate doing a full backup,...
November 3, 2004 at 8:55 am
You have my sympathy, but this is a prime example of why I don't use the maintenance plans nor the 'point and click' shortcuts in Enterprise Manager. Too much chance...
October 29, 2004 at 11:41 am
I like to read the rants also (well sometimes), but when there's 50 posts and 40 of them just say I want my points back, that's a waste of my...
October 29, 2004 at 8:02 am
Even if you lose the .mdf file you might be able to do a log backup. Remember the schema is kept in MASTER, so when the backup is run, Master...
October 28, 2004 at 9:39 am
Please post your questions in an appropriate forum. This forum is dedicated to the Question of the Day - which is a daily question about SQL Server. Everyday SQLSeverCentral posts...
October 28, 2004 at 9:15 am
Viewing 15 posts - 1,726 through 1,740 (of 2,904 total)