Viewing 15 posts - 136 through 150 (of 233 total)
First of all, I have mentioned that it can be done in a single script file, but can't be. Sorry for that. You will need 2 script files.
Now coming to...
January 22, 2009 at 4:43 am
If it is pretty small then you can follow this:
1. Take backup on server.
2. Copy backup file on remote machine (laptop).
3. Drop the existing DB on the remote machine.
4. Restore...
January 22, 2009 at 4:06 am
I think the following sequence should help you:
1. Execute sp_adddistributor on master db of distributor.
2. Execute sp_adddistributor on on master db of all publishers.
3. Execute sp_adddistributiondb on the distributor.
For parameters...
January 22, 2009 at 3:50 am
What is the size of the database?
How many users wants to access this database from their laptops?
Let us know the answers of these question so that we can provide a...
January 22, 2009 at 3:39 am
I had faced the same issue twice or thrice on my test server. That time I just restarted the SQL server service 🙂 (as it was a test server).
January 22, 2009 at 2:42 am
Did you try googling?
- Check whether mixed authentication is enabled on your remote server.
- Check whether the windows user has rights to connect to that server.
and do google it..
January 22, 2009 at 2:40 am
ALIF (1/20/2009)
i cannot drop the publisher nor the subscriber.
thanks
I am also interested in knowing the alternate solution.
Anyone?
January 20, 2009 at 11:52 pm
You can try the following approach:
- drop the subscription only for the article that refers to your table. (sp_dropsubscription )
- drop the article. (sp_droparticle)
- drop the table.
Let us know if...
January 20, 2009 at 11:28 pm
same way..
sp_helptext 'UDFName'
January 20, 2009 at 12:37 am
Should have mentioned in the first post...
If there is no data in the table you can use ALTER TABLE...
January 19, 2009 at 6:12 am
Also, you don't need the outer cusor:
DECLARE
@liDepLinksID ...
January 19, 2009 at 6:10 am
Which transaction you want to rollback?
The earlier UPDATES that you made on UDMLastTransaction when the condition was true in the loop...?
OR/AND
the processing done by the pr_UDMAssetValuesReport SP when the condition...
January 19, 2009 at 6:07 am
Viewing 15 posts - 136 through 150 (of 233 total)