Viewing 15 posts - 16 through 30 (of 223 total)
I just noticed that CHECK constraint behaves like after TRIGGER. That is, the row is inserted then checked whehter it satisfies the...
August 7, 2009 at 1:18 am
I just asking if it is possible, in any mode, standby or no recovery.
In norecovery mode its not possible as db will be in recovery mode and you cannot access...
August 6, 2009 at 7:42 am
Exactly. You cannot copy these files. Even though if you copy to any other server with any third party utilities also it cannot be attached to any other server.
Database...
August 6, 2009 at 6:08 am
I am asked not to create any backup as this would cause server slow. I want to create one snapshot and then take this snap shot file and attach to...
August 6, 2009 at 5:35 am
Is it possible to take full database backup of log shipped database (one that receives and applies logs from master)?
Do you mean the database on secondary server. In which mode...
August 6, 2009 at 5:29 am
Hi Sanjay,
Microsoft recommends using create database dbname for attach instead of sp_attach_db.
From bol:
This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in...
August 4, 2009 at 7:26 pm
Hi,
As Slick suggested did you checkout using profiler. It will help you to understand whats happening in the backend. Everthing seems to be fine as it is...
August 4, 2009 at 7:05 pm
Chandu (8/4/2009)
August 4, 2009 at 10:23 am
Hi,
Can you post the create scripts for tables,indexes and some sample data. and also can you post the plan in .sqlplan format. so that we can get...
August 4, 2009 at 7:38 am
Hi,
You can check the restorehistory table in msdb database.
Refer http://msdn.microsoft.com/en-us/library/ms187408(SQL.90).aspx
August 4, 2009 at 7:31 am
Hi,
You can use the sql server management studio. (Start->Run->sqlwb.exe). You get a connect dialog box asking the servername and your credentials. After supplying the necessary information and...
August 4, 2009 at 7:12 am
Hi,
You can execute the following script. I am assuming only one mdf and ldf files (no ndf's)
CREATE DATABASE MYDB
ON
(FILENAME='D:\DATA\MYDB_DATA.MDF'),
(FILENAME='D:\LOGS\MYDB_LOG.LDF')
FOR ATTACH;
August 4, 2009 at 7:06 am
For table to be replicated in transactional replication it is must that it should have a primary key. Otherwise it cannot be part of transactional replication.
August 4, 2009 at 5:06 am
instead of clearing the log its better if you can increase the size of the log file
start->run
and type eventvwr and click on ok. Eventviewer window will open.
In the Eventviewer window...
August 4, 2009 at 4:01 am
In simple
Snapshot replication
snapshot replication generates an initial snapshot of the schema and data from the publisher and applies them to the subscriber. Any subsequent changes like insertion of rows,deletion and...
August 4, 2009 at 3:48 am
Viewing 15 posts - 16 through 30 (of 223 total)