Viewing 15 posts - 3,346 through 3,360 (of 6,679 total)
You need to separate out each call using the batch terminator GO. So you need:
SELECT ... FROM ...
GO
ALTER TABLE ...
GO
SELECT ... FROM ...
GO
March 13, 2011 at 6:48 pm
djackson 22568 (3/13/2011)
First, one MS article suggested issues with SP2....
March 13, 2011 at 6:46 pm
You should not have any data in the model database - that is the database the SQL Server uses to build tempdb and as the 'model' for new databases that...
March 12, 2011 at 6:54 pm
In your code - you are not specifying RECOVERY which tells SQL Server to finish the backup and recover the database.
From the GUI - you need to select the option...
March 12, 2011 at 1:15 am
SQLdba-473999 (3/10/2011)
March 10, 2011 at 8:23 pm
Most likely the issue is with the data - but, there is at least one bug that might apply here:
http://support.microsoft.com/kb/958214
Validate the version you are running, and if it is not...
March 9, 2011 at 3:29 pm
I think it really depends on how large your transaction logs are now, and whether or not you have enough room in them to handle the increased usage.
For example, I...
March 9, 2011 at 3:05 pm
jligda 35032 (3/7/2011)
http://www.microsoft.com/sqlserver/2005/en/us/compare-features.aspx
We have two quadcore Xeon e5410 @ 2.33GHz. What happens when you try and run standard 2005...
March 7, 2011 at 2:19 pm
With this server configuration, I have to assume you either have multiple instances - or you have many more databases in that instance that just this one database.
If this is...
March 6, 2011 at 9:55 am
Right-click on the database you want to check and run the Schema Changes History report. Note, this report uses the default trace and will only go back as far...
February 28, 2011 at 8:22 pm
I don't have any idea about your system - or the indexes that you are rebuilding and how much space is required.
You need to identify how large the indexes are...
February 28, 2011 at 8:19 pm
Yes - and that is the problem...it might break the log chain, but no way to be sure. So, to be safe - I would not recommend running transaction...
February 28, 2011 at 8:15 pm
SKYBVI (2/28/2011)
The transaction log is full..You have to shrink the transaction log before attempting to again re run the job.
Regards,
Sushant
No, NO, NO...
Yes, the transaction log file filled up during that...
February 28, 2011 at 3:57 pm
There is a very small possibility that you could be in the middle of a transaction log backup - and the drive becomes unavailable just at the right time to...
February 28, 2011 at 3:52 pm
I would not stop performing transaction log backups and rely solely on database snapshots or even SAN snapshots. First, you cannot restore to a point in time from a...
February 28, 2011 at 2:41 pm
Viewing 15 posts - 3,346 through 3,360 (of 6,679 total)