Viewing 15 posts - 2,446 through 2,460 (of 2,904 total)
1. What do you use for daily full backup - SQL backup on type, disc or third party backup Software (we have BackupExec)?
Ans-I do the 'native' SQL Server backup to...
October 2, 2003 at 8:06 am
Double check to make sure the job schedule is set for RECURRING. (Use Enterprise Manager, drill down to Management, expand that, expand SQL Server Agent, click on Jobs. Right click...
October 2, 2003 at 7:56 am
I finally was able to set up a test and it's not working. It does concatenate the COL to the number, but I can't get it to use it as...
October 2, 2003 at 7:53 am
quote:
Finally heard back from the vendor and found out that they had restored the copy of our database to a SQL Server...
October 1, 2003 at 12:00 pm
Thank you, but which suggestion solved the issue?
It's always good to post what solved a problem, that way others see the final solution if they come across this thread.
-SQLBill
October 1, 2003 at 11:55 am
SELECT (SELECT 'COL' + (CAST(DATEPART(MONTH,GETDATE())) AS CHAR(2))))
FROM yourtablename
-SQLBill
October 1, 2003 at 11:49 am
Let's start with the table you are inserting this into.
What is the order of the columns? Is it the same as the order in the SELECT statement? Probably not.
If the...
October 1, 2003 at 8:25 am
You say the Event Log shows error 208.
Which Event Log?
What does the SQL Server Error Log show?
What does the Windows Event Log show?
-SQLBill
October 1, 2003 at 7:24 am
Jonathan,
How about turning that into a FAQ (Resources>FAQ)?
-SQLBill
October 1, 2003 at 7:16 am
You posted in the Access forum, but I'll answer as though you meant SQL Server.
You can't do a restore unless you have backups. Autogrow has NOTHING to do with backup...
September 30, 2003 at 7:50 am
That's not a large database. I have one that is over 200GB.
Here are some things to consider:
Your system just crashed. You tell your boss you can restore from backups but...
September 30, 2003 at 7:44 am
Could your transactions be causing it to grow over the 6000 MB size? If so, that would cause it to fail.
-SQLBill
September 30, 2003 at 7:35 am
Do you know about when it's happening?
You could run a trace to capture what's happening.
-SQLBill
September 30, 2003 at 7:33 am
I suggest you do a search of the topics, especially in the Backup forum. This subject has been covered quite a lot.
So, look through the forums, find what has already...
September 29, 2003 at 1:10 pm
What do you mean by disable or limit nested transactions?
The answer is yes you can do either one.
You just don't write nested transactions or you write only the amount you...
September 29, 2003 at 1:08 pm
Viewing 15 posts - 2,446 through 2,460 (of 2,904 total)