Viewing 15 posts - 346 through 360 (of 1,098 total)
Wich type of replication? Transactional, merge?
Try running sp_subscription_cleanup. Check for parameters in BOL.
December 16, 2003 at 7:26 am
You can put your DBCC CHECKDB commands in separate jobs one for each db you need to check.
In 2000 the complete excecution is logged on SQL log, with the message...
December 15, 2003 at 2:36 pm
Right Frank.
It was my mistake. Pay no atention to my answer.
December 15, 2003 at 2:29 pm
Sorry for the mess, I meant this:
DROP TABLE myName
GO
CREATE TABLE myName(myn char(10))
go
INSERT INTO myName (myn) VALUES('alfred')
INSERT INTO myName (myn) VALUES('Alfred')
INSERT INTO myName (myn) VALUES('berta')
INSERT INTO myName (myn) VALUES('Frank')
INSERT INTO myName...
December 15, 2003 at 1:24 pm
Another way could be this one, but don't know if it is cost efective:
DROP TABLE myNameGOCREATE TABLE myName(myn char(10))goINSERT INTO myName (myn) VALUES('alfred')INSERT INTO myName (myn) VALUES('Alfred')INSERT INTO myName (myn)...
December 15, 2003 at 1:22 pm
Wich type of replication do you have? your Backup strategy will change depending the type of replication.
For transactional check for the option 'sync with backup' in BOL. This will keep...
December 15, 2003 at 8:18 am
I had to do it once. I used he following commands, maybe they can help.
sp_resetstatus 'dbname'
dbcc dbrecover (dbname)
and DBCC Rebuild_log (dbaname) bacause my log was damaged.
December 15, 2003 at 5:50 am
With simple recovery mode, only full backups are possible.
When failure, you will have to restore the last full backup you have.
With system databases this is ok. I would suggest to...
December 12, 2003 at 2:32 pm
If the server name is the same, then you can backup all your databases, and restore them in the new server.
Check the expired subscription period, because you might need to...
December 11, 2003 at 2:00 pm
You can execute sp_who or sp_who2 with it is more complete.
Every time you need to imitate something EM does in T-SQL it is good to execute a trace with profiler,...
December 11, 2003 at 12:50 pm
did you run a checkdb in database 'Iowa_Vet'?
Did it return any errors?
December 11, 2003 at 10:54 am
You can run sp_repladdcolumn to add a new
column of an already published table.
check the parameters in BOL, and allow NULLs in the new column.
December 11, 2003 at 6:30 am
What error is showing?
Is it server2 configured for remote access?
December 11, 2003 at 6:00 am
The Task Pad view starting failing in my EM after my DB was very big.
Now my db in 300 Gb and most of the cases EM shows me an error...
December 11, 2003 at 5:51 am
SQL server uses an error log file each time it reboots.
You can use a new error log file by executing sp_cycle_errorlog.
December 10, 2003 at 2:28 pm
Viewing 15 posts - 346 through 360 (of 1,098 total)