Viewing 15 posts - 16,966 through 16,980 (of 26,484 total)
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
ray 78019 (2/10/2010)
I would like to create a new thread, but the "Add New Topis" button is not available when I want to create one in another thread.
Have you tried...
February 10, 2010 at 7:27 am
AndrewSQLDBA (2/10/2010)
Is anyone snowed in like me?
I am trying to add a single day to a date data type value
DECLARE @TodaysDate Date
DECLARE @TomorrowsDate Date
SET @TodaysDate = 2010-2-14
SET @TomorrowsDate =...
February 10, 2010 at 7:18 am
MauroPichiliani (2/10/2010)
February 10, 2010 at 6:41 am
Viewing 15 posts - 16,966 through 16,980 (of 26,484 total)