Viewing 15 posts - 16,966 through 16,980 (of 26,489 total)
Have you started looking at CREATE ENDPOINT?
Are the two instances running under a domain account?
February 10, 2010 at 10:49 am
Sounds like concatenation with a null value. Check out the code I posted and see if it works.
February 10, 2010 at 10:16 am
Did a little reformatting of your code, if you want give it a try.
February 10, 2010 at 10:10 am
Lookup CONVERT in Books Online. That is the best place to start to answer your question.
February 10, 2010 at 10:02 am
Try declaring a local variable inside your sproc to use in building the BreadCrumb, then at the end assign that local variable to the output parameter.
Just shooting in the dark...
February 10, 2010 at 10:00 am
Also, quick question, are the SQL Server instances running under a domain account?
February 10, 2010 at 9:46 am
george sibbald (2/10/2010)
A witness is not a requirement, up to you whether you require...
February 10, 2010 at 9:45 am
Look at how I have setup the exec of the stored procedure. You need to do something very similiar to return the value of the output parameter to your...
February 10, 2010 at 9:25 am
winslet (2/10/2010)
Full backup,
Trans backup,
Restore full backup on secondary with NORECOVERY,
Rectore Trans log backup on secondary with NORECOVERY,
Enable Trace flag...
February 10, 2010 at 9:20 am
And yes, I am currently in the process of setting up database mirroring myself. There is actually quite a bit to do to get it up and running.
You should...
February 10, 2010 at 9:10 am
Have you created the database mirroring endpoints on the two servers?
Are you using NT Authentication or Certificates for the connection between the two servers?
Have you granted CONNECT permissions as needed...
February 10, 2010 at 9:08 am
EDIT: Also, change the first two parameters as needed to match your data.
Try the following from SSMS.
declare @ BCrumb varchar(2000); -- Had to add a space between the @...
February 10, 2010 at 9:00 am
Again, based on the sample data, please show us what the expected results of the query would be. This will help us help you.
February 10, 2010 at 7:42 am
Piotr.Rodak (2/10/2010)
Yes, there is procedure sp_start_job, you can have a look.HTH
Piotr
This procedure is located in the msdb database. If your connection is to another database, you would execute like...
February 10, 2010 at 7:40 am
Help us help you, based on the sample data in the original post what is the expected results?
February 10, 2010 at 7:36 am
Viewing 15 posts - 16,966 through 16,980 (of 26,489 total)