Viewing 15 posts - 391 through 405 (of 860 total)
June 7, 2011 at 5:12 am
forsqlserver (6/7/2011)
check the mdf,Ldf size,
Take a full backup,
Change the recovery model to simple,
again do a full backup,
check the ldf...
June 7, 2011 at 5:04 am
GilaMonster (6/6/2011)
muthukkumaran Kaliyamoorthy (6/6/2011)
Only if your update changes the key values.
So this also true, Because the replication nees a primary key to setup.
Yes, l replication needs a key, but it...
June 6, 2011 at 11:28 am
GilaMonster (6/6/2011)
muthukkumaran Kaliyamoorthy (6/6/2011)
GilaMonster (6/6/2011)
An in-place update.
@sqlzealot-81,
What gail told is
An inplace update only change the byte.But an exception update trigger and replication.This as you told delete followed by an...
June 6, 2011 at 6:32 am
One thing leads to another. Your code worked. Now I have additional questions. When I restore GMF to A as I did origianlly using SSMS, shouldn't I be changing the...
June 6, 2011 at 6:28 am
GilaMonster (6/6/2011)
muthukkumaran Kaliyamoorthy (6/6/2011)
GailThis means if i have primary key (C.I) then the SQL will do the delete followed by an insert to the table and PK.
Only if your...
June 6, 2011 at 6:06 am
You have to give the correct logical name to the restore clause otherwise the SQL will not take/create the database.
June 6, 2011 at 5:53 am
Lets try
RESTORE DATABASE B
FROM DISK = 'D:\SQLData\A.bak'
WITH REPLACE,
MOVE 'GMF' TO 'D:\SQLData\B.mdf',
MOVE 'GMF_Log' TO 'D:\SQLData\B_Log.ldf'
June 6, 2011 at 5:51 am
Gail
This means if i have primary key (C.I) then the SQL will do the delete followed by an insert to the table and PK.
June 6, 2011 at 5:46 am
Can you post me the result so that i 'll help you. (From Server B restoring server)
RESTORE filelistonly FROM DISK = 'D:\SQLData\A.bak'
June 6, 2011 at 5:21 am
alnawrass2002 (6/6/2011)
The application acting very slow,and the developer say that this is due to SQL DB Server,how can i prove that SQL server...
June 6, 2011 at 5:10 am
LutzM (6/6/2011)
June 6, 2011 at 4:59 am
WolvesAly (6/3/2011)
I am new to here and just getting into SQL 2008 . Does anyone have any pointers or simple steps for me to import a database into...
June 6, 2011 at 4:29 am
Viewing 15 posts - 391 through 405 (of 860 total)