Viewing 15 posts - 3,451 through 3,465 (of 6,679 total)
From BOL:
--To Restore an Entire Database from a Full database backup (a Complete Restore):
RESTORE DATABASE { database_name | @database_name_var }
[ FROM <backup_device> [ ,...n ] ]
[ WITH...
January 11, 2011 at 5:24 pm
omer_abdalla (1/11/2011)
January 11, 2011 at 4:36 pm
Actually, the first backup you performed before shrinking the log file wasn't technically necessary. As soon as you changed the recovery model from full to simple - the virtual...
January 4, 2011 at 6:47 pm
The database engine and analysis services engines are services - not applications. You won't see them in Programs, but you will see them in the services applet (services.msc).
It sounds...
January 4, 2011 at 6:40 pm
willtwc (1/3/2011)
DECLARE @DatabaseName nvarchar(50)
DECLARE @SPId int
DECLARE @userid varchar(100)
declare @command varchar(200)
SET...
January 3, 2011 at 7:04 pm
So, you are restoring the backup to another system - not the same system.
It looked like you were backing up the database, and restoring it to the same system. ...
January 3, 2011 at 7:01 pm
Well we tried the single user mode. We are using Lite Speed and it tries to open another connects and fails. So we abandon that method.
Steve
I use Litespeed...
January 3, 2011 at 3:17 pm
Now I have to ask - why would you do this?
It really does not make any sense to backup the current database, then immediately restore over the existing database that...
January 3, 2011 at 3:08 pm
pro-1019688 (1/2/2011)
Someone mentioned in an earlier post that all tables must have a cluster definition. This is not true. It's called a hash table.
Actually - it is called...
January 2, 2011 at 3:22 pm
Not sure about Azure and what is available or not - but lookup WAITFOR in BOL. That will allow your process to sleep for a time and start up...
January 2, 2011 at 3:17 pm
Also a bit late, but if SSIS is not installed on that server - then I would think the package is also not installed on that server. If it...
January 2, 2011 at 3:14 pm
First, what do you believe the certs will give you - that you don't already have through time and experience?
Is there a goal here besides just getting a certificate?
I wouldn't...
January 2, 2011 at 10:31 am
Lowell (1/1/2011)
instead of quotes, you could use the builtin QUOTENAME function to get brackets, which would still be syntactically correct:
SELECT 'EXEC sp_helpdb ' + QUOTENAME(name) + ' FROM sys.tables
And,...
January 1, 2011 at 7:06 pm
Yes - it is possible to run multiple instances in a cluster, and no reason why you cannot run both 2008 and 2005 on the same cluster.
Remember, in a cluster...
January 1, 2011 at 10:08 am
A couple of things:
1) Are you sure you are running SQL Server 2008 Enterprise Edition and not Standard Edition? Use one of the following to verify:
Select @@version;
Select serverproperty('Edition');
Note: Standard...
December 28, 2010 at 2:48 pm
Viewing 15 posts - 3,451 through 3,465 (of 6,679 total)