Viewing 15 posts - 1 through 15 (of 23 total)
Thanks Tim. I tried IP address as well (TCP://10.10.10.10\Prod:1103) and I did not get an error message; however, the mirroring did not occur. I am going to scrap...
November 14, 2008 at 8:07 am
Thanks Matt. I'll try this.
November 13, 2008 at 5:26 am
Phil,
How do I capture the results of the query in a variable so can perform subsequent business logic in my procedure?
Thanks.
Ken
October 24, 2008 at 9:39 am
Nice solution. Where would I find the .RDL file mentioned in the article?
September 9, 2008 at 1:02 pm
The problem was that the SQL Server Agent was running on the publisher but not running on the distributor.
April 17, 2008 at 1:32 pm
Additional information:
sp_addmergepublication executes fine.
sp_addpublication_snapshot @publication executes fine but returns this message.
sp_startpublication_snapshot @publication execution fails with this message.
April 17, 2008 at 12:24 pm
Thanks for the reply.
November 20, 2007 at 9:32 am
Thank you for the reply. Would your answer change if a stored procedure was used as opposed to a function? What I am looking to do is select...
November 20, 2007 at 8:39 am
DECLARE @Cmd AS VARCHAR (50)
DECLARE @Result AS INTEGER
SET @Cmd = 'C:\DIR /P' --build appropriate command line
EXECUTE @Result = Master.dbo.xp_cmdshell @Cmd
IF (@Result = 0) BEGIN
-- Do something
END...
November 8, 2007 at 8:10 am
After canceling out of the SETUP and going into the server to check for encrypted columns, I saw the version is now 9.0.1399. Should I attempt to install SP2...
November 8, 2007 at 7:57 am
Not that I am aware of. There are other instance of SQL Server on this server, though. Posibly in one of them? Or am I only concerned...
November 8, 2007 at 7:50 am
Thanks Ramesh. This part I am Ok with. It is the SELECT in the anchor recursive sections that I am having trouble with.
October 23, 2007 at 8:45 am
Thank you. Is it possible to include it as a column in the table returned or does it have to be returned on its own?
October 23, 2007 at 7:08 am
Thank you. The overwhelming trend seems to be to do this at the client level.
October 18, 2007 at 5:37 am
Viewing 15 posts - 1 through 15 (of 23 total)