Viewing 15 posts - 556 through 570 (of 2,486 total)
I've come across this before. My feeling is that there is a bug in the save routine that doesn't save the Execute Package task correctly.
You can try,
a) deleting...
November 7, 2005 at 11:32 pm
Checkout the scanners available over at http://www.sqlsecurity.com
November 7, 2005 at 9:40 pm
Take the plunge and get rid of the MAPI dependency.
If you must use a task in DTS, instead of ActiveX Script, check out the DTS SMTP Task at http://www.sqldev.net
November 7, 2005 at 9:40 pm
Take a look at the ANSI settings. If you run profiler you'll see what gets set for the connection.
November 2, 2005 at 7:02 pm
Maybe something to do with your server or database settings.
When I run your query I get,
fld1 matches ----------- ----------- ----------- 1 Match found Match found 2 NULL No match fo 3 ...
November 2, 2005 at 5:44 pm
It would be helpful if you provided a description of what you are trying to achieve.
On first glance I'd suggest the following,
1) Move the sub-query from the WHERE clause to...
November 2, 2005 at 5:41 pm
Don't know if it's widely known but I've found that if you have the report showing in Report Manager when you deploy the report it seems to keep displaying the...
November 1, 2005 at 9:46 pm
I was thinking about that after I posted the code. Surely it could be done without the flow control. Some sort of logic involving the datepart value maybe ????
November 1, 2005 at 9:19 pm
I don't think you're using SQL Server 2003 as there hasn't been a new version since SQL Server 2000 and SQL Server 2005 hasn't been released yet
November 1, 2005 at 9:14 pm
Hmmm ... something that simple ...
Can't reproduce it on my servers, must be something in you environment.
CREATE TABLE #tm (
to_time datetime
)
INSERT INTO #tm VALUES ('1 Nov 2005...
November 1, 2005 at 8:38 pm
November 1, 2005 at 8:27 pm
If you can provide the table definition and the query you're using it would be most helpful
November 1, 2005 at 8:25 pm
Try this
SET DATEFIRST 1DECLARE @DATE datetime DECLARE @EOM datetime DECLARE @SAT datetime-- set a date to use SET @DATE = '15 Jul 2005' -- add a month SET...
November 1, 2005 at 7:10 pm
Brenda
xp_smtp_sendmail has a parameter called @MessageFile, You just pass in the full path and filename to the html file and it is used as the message body. There is quite...
October 31, 2005 at 6:45 pm
Viewing 15 posts - 556 through 570 (of 2,486 total)