Viewing 15 posts - 9,316 through 9,330 (of 26,490 total)
Lynn Pettis (11/12/2012)
Steve Jones - SSC Editor (11/12/2012)
November 12, 2012 at 8:55 pm
Looking at this:
ALTER PROCEDURE [dbo].[procDBMailInsertAndSendEmail]
-- Add the parameters for the stored procedure here
@datetimesent datetime = GETUTCDATE,
Remove the @datetimesent parameter. You aren't even using it in your procedure. ...
November 12, 2012 at 6:34 pm
Steve Jones - SSC Editor (11/12/2012)
November 12, 2012 at 4:39 pm
Brandie Tarvin (11/9/2012)
Koen Verbeeck (11/9/2012)
The Dixie Flatline (11/9/2012)
Hey, does anyone realize that in 8-9 days, The Thread will have been running strong for 4 consecutive years now?Will there be cake?
There...
November 9, 2012 at 6:45 am
vs.satheesh (11/8/2012)
In my requirement
For example,
From date : 01-01-2012
To date : 30-12-2012
Intervel : 2 or 3 or...
November 8, 2012 at 7:24 am
Really can't help you based on what you have posted as there is simply not enough information. We can't see what you see from here.
Please take the time to...
November 7, 2012 at 8:06 pm
It all comes down to Monday Night Football to determine the standings after week 9. If I hold on to win tomorrow I will still be in 7th position....
November 4, 2012 at 10:42 pm
What were you doing when you received this error? Have you checked the error logs on both systems to determine if they could provide you with additional information, and...
November 4, 2012 at 7:45 am
It would also help if we could see the DDL (CREATE TABLE statement) for the table involved.
November 1, 2012 at 6:54 am
I have to agree, we really need to have the DDL (CREATE TABLE statements )for the tables, some sample data (INSERT INTO statements) for each of the tables, expected results.
Looking...
November 1, 2012 at 5:35 am
Depending on your DR/HA requirements, you could also look at using the filestream to store the files, sice it looks like you are using SQL Server 2008 based on the...
October 31, 2012 at 9:05 pm
Can you add additional disks to your server? I would highly recommend moving tempdb to its own drive, and preferably a large one just in case.
If this has been...
October 31, 2012 at 7:30 am
Added Scott's sample data to the mix:
/****** Object: UserDefinedFunction [dbo].[fn_datediff] Script Date: 10/30/2012 00:05:42 ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[fn_datediff]') AND...
October 30, 2012 at 12:18 am
Are we looking for something like this?
/****** Object: UserDefinedFunction [dbo].[fn_datediff] Script Date: 10/30/2012 00:05:42 ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[fn_datediff]') AND...
October 30, 2012 at 12:08 am
Viewing 15 posts - 9,316 through 9,330 (of 26,490 total)