Viewing 15 posts - 31 through 45 (of 118 total)
DBCC OPENTRAN will give you transactions that are open.
with the spid you get issue a KILL command which will end the transaction.
April 25, 2009 at 3:07 am
Is there a way to Specify multiple mdf files while attaching or restoring the database
A database can have only one mdf file.So you cannot split this.
My main initension is to...
April 25, 2009 at 3:03 am
Take the full backup of the DB,copy it and restore it on another server.You cannot split the mdf file.
If the backup is again >5GB,take striped backup.Refer BOL for this.
In 2008...
April 25, 2009 at 2:28 am
There is an option in the configuration wizard about the source dircetory.
I think you have given \\U-LPL-PROD-18\MNDT_Batching_Logs there.give primary's folder here.
Also for the secondary, create a separate folder instead of...
April 24, 2009 at 3:26 am
Yes, the source directory should be your primary server's shared folder.Also give full permissions to the shared folders on both the servers.
Re-configure again by giving the correct paths.
Also on secondary...
April 24, 2009 at 2:19 am
Script out the logins and execute the script in 2005 master database.
April 24, 2009 at 2:12 am
Who changed it -- we cannot trace unless you were running a trace.iam not sure .
when it was changed--
USE Master
GO
SELECT [name],create_date, modify_date
FROM sys.sql_logins
WHERE [name] = 'sa'
April 22, 2009 at 2:01 am
NO
but you can create both the tables and later create the foreign key constraints.
April 22, 2009 at 12:07 am
Add the dbserver1 as linked server on the dbserver2.
Then you can query the dbserver1 table from dbserver2 as:
select * from dbserver1.databasename.schemaname.emp
April 21, 2009 at 11:59 pm
Please post the error message you got.
There's no such bug in 2008
April 17, 2009 at 2:00 am
Can unique constraint have more then one nulls?
The answer is NO.Unique constraint can have only one NULL value.All the rows in that column should be unique and so it accepts...
April 17, 2009 at 1:55 am
SELECT TALLY_NAME FROM TALLYS WHERE LAST_UPDATED_DATE < '04/15/2009'
try this...
April 15, 2009 at 2:55 am
A single computer(server) can have many sql server installations.Each computer can have 16 instances.(50 in 2008).One will be the default instance and the rest are named instances.
So instance is not...
April 9, 2009 at 2:51 am
Please post the query in which you sorted .With an ORDER BY clause you can get the results you desired.
April 9, 2009 at 12:10 am
Viewing 15 posts - 31 through 45 (of 118 total)