Viewing 11 posts - 211 through 221 (of 221 total)
You can always set the degree of parallelism to 1 if you are having problems with particular queries. We use it sometimes.
Example:
SELECT
*
FROM
Orders
WHERE
...
January 18, 2011 at 8:30 am
I believe the only way you could do this is to either:
1) Add or alter the current report parameters to be data driven and then set the parameter properties so...
January 18, 2011 at 8:20 am
It may sound crazy (like it did to me at first) but YouTube is a fantastic resource for online video tutorials on all sorts of SQL Server related technology. Have...
January 18, 2011 at 1:55 am
We need the DDL code before we can comment really but it should be reasonably straight forward if your 'starttime' is a DateTime datatype.
Something like this should do it:
WHERE starttime...
January 17, 2011 at 9:12 am
Hi,
I too am just starting out with SSIS. The tutorials i've been working through are these:
http://msdn.microsoft.com/en-us/library/ms167031.aspx
You may find that of some use. Are you sure that SSIS is the tool...
January 17, 2011 at 8:31 am
Hi,
Change your select statement to have the following:
;
WITH cte
AS ( SELECT
...
January 17, 2011 at 8:09 am
Does it now always fail at this step or is it just sometimes?
We've seen a problem recently with xp_smtp_sendmail being unable to run on SQL Server 2008 64 bit edition....
October 11, 2010 at 4:20 am
Perhaps if you posted the procedure and some sample data we might be able to help you?
May 13, 2010 at 10:54 am
SELECT ( CASE yourDate
WHEN 'January' THEN 1
...
May 6, 2010 at 4:09 am
You could always include a call to xp_smtp_sendmail see below...
DECLARE @ERC INT
DECLARE @EmailFromAddress VARCHAR(100)
DECLARE @EmailToAddress VARCHAR(100)
...
April 13, 2010 at 5:15 am
Be careful if any of your data fields can be NULL -> it will make the entire result NULL. In that case you should wrap the column as follows:
ISNULL([AddressLine1],'')
You can...
February 5, 2010 at 5:28 am
Viewing 11 posts - 211 through 221 (of 221 total)