Viewing 15 posts - 121 through 135 (of 1,098 total)
I meant in the first exec.
Don't know the exact explanation, but it is like it is executed in a diferent context or connection.
If you create a #temp table with EXEC...
May 14, 2004 at 12:04 pm
You should also add the @srvproduct = 'Oracle' parameter.
May 14, 2004 at 10:06 am
You must put the update inside the EXEC.
EXEC ('update what ever')
Or declare @strUp AS VARCHAR(300)
SELECT @strUp = 'Update whatever...'
EXEC (@strUp)
May 14, 2004 at 10:03 am
Check dbcc shrinkfile (EMPTYFILE parameter).
First you need to move all the data that is in the file to another file of the same filegroup. And then you will be able...
May 14, 2004 at 8:31 am
But how do you manage that subscribers connect to a publisher with a diferent name than the original??????
May 14, 2004 at 7:47 am
Are the in secuence? Can you use between instead of IN?
May 14, 2004 at 7:40 am
You can use logevent.exe windows command, and execute it with xp_cmdshell from SQL.
This program allows you to write any error with the id and shource that you need.
May 14, 2004 at 7:23 am
You won't be able to dettach/attach in the publisher, but you should be able at the subscriber.
you could try altering the database to create new files in the partition and...
May 13, 2004 at 11:57 am
That sp is executed when you add the subscription.
Are you using EM or sp_addsubscription? If using sp, then check the parameters that you are using because it seems that...
May 13, 2004 at 6:24 am
No. You must drop all subscriptions from the subscriber to all publisher.
Create new publication in new publisher, subscribe all your subscribers, generate the snapshot and sincronize again.
May 12, 2004 at 6:17 am
Check in the Server NetWork Utility and in the properties of TCP, check the port that it is configured.
Also, if in the server another aplication/process uses the same port by...
May 11, 2004 at 2:54 pm
Mmm...
I would first try DBCC CHECKDB or CHECKTABLE with REPAIR_REBUILD or REPAIR_ALLOW_DATA_LOSS first.
You should stop the sql Agent before running sp_dboption to put the db in single user mode.
If it...
May 11, 2004 at 6:56 am
Please, run sp_helpreplicationdb to check with databases are marked for replication.
Distribution is for replication but should not be marked for replication, so you should be able to restore it at...
May 11, 2004 at 6:43 am
Viewing 15 posts - 121 through 135 (of 1,098 total)