Viewing 15 posts - 841 through 855 (of 1,098 total)
I don't think that there is a function for that, I think you must use a cursor unless anyone else knows a way.
March 19, 2003 at 1:49 pm
What do you mean by 'as our main db.' Are you saying to use the db for the subscriber as a production server?
March 19, 2003 at 1:44 pm
Replication shouldn't interfiere with your backups. But to keep replication consistency in case of a server crash, you should check the option 'Sync with Backup' in the sp sp_replicationdboption. This...
March 19, 2003 at 1:26 pm
Are you having troubles?
March 19, 2003 at 10:40 am
I think that for update triggers is easy but for the others you will have to use a cursor.
Unless the transacction is a massive transacction, (10000 inserts for expample), the...
March 19, 2003 at 9:57 am
run killl [SPID] WITH STATUSONLY
If it show time remaining 0, then the process won't die, so you will have to reboot sql server
March 19, 2003 at 9:52 am
I didn't know this dbcc command. Can you post the parameters?
March 19, 2003 at 7:38 am
DBCC IND doesn't seems to work either.
March 19, 2003 at 7:14 am
to change a column for a published article (table) you must drop the publication, change the table and then recreate and syncronize the publication.
If your publication is too big, to...
March 19, 2003 at 6:46 am
Also a god way to learn is create a publication with EM, script it, and then check with BOL all the stored procedures used to create the publication.
March 19, 2003 at 6:41 am
Also if you explain what does the job do would help us find the problem...
March 18, 2003 at 1:18 pm
Try this:
DECLARE @Lastname VARCHAR(25)
SELECT @LastName = 'O'+''''+'Malley'
SELECT * FROM PERSONS WHERE LASTNAME = @LastName
March 18, 2003 at 10:37 am
DID you create the identity field with the option NOT FOR REPLICATION or not?
March 18, 2003 at 9:47 am
Viewing 15 posts - 841 through 855 (of 1,098 total)