Viewing 15 posts - 1,966 through 1,980 (of 2,486 total)
If you don't have a 'On Failure' workflow and you have the 'Fail Package on first Error' option enabled then the package will fail.
Hope this helps
Phill Carter
--------------------
Colt 45 - the...
November 10, 2003 at 2:39 pm
In the top part put the server name and connection details and messages will be logged to that server. Useful if you have packages running on a number of servers....
November 9, 2003 at 7:10 pm
The time you have given as an example looks strange. What format is it?
For reqular datetime fields you can use the CONVERT statement and include a style parameter,
eg:
CONVERT(varchar(10), Date_in, 103)...
November 9, 2003 at 4:18 pm
Are you asking what the difference is between a DTS Package and a SQL Agent Scheduled Job?
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
November 9, 2003 at 4:13 pm
From BOL,
quote:
For stored procedures, SQL Server uses the SET ANSI_NULLS setting value from the initial creation time of the stored procedure. Whenever...
November 9, 2003 at 4:12 pm
You can get helpful debugging info if you have package logging enabled. This can be turned on using the Logging tab in Package Properties.
Unfortunately, if you haven't already enabled the...
November 9, 2003 at 4:06 pm
You can approach this two ways,
1. Put your SQL Statement in a stored procedure and use the RAISERROR command to signal a failure condition. Then set up your workflow appropriately.
2....
November 9, 2003 at 3:52 pm
The Typeid is an integer value that indicates the datatype of the global variable. This is needed because all the parameters that are passed to DTSRUN are passed as strings.
I've...
November 9, 2003 at 3:45 pm
I've found this same problem before, I think BOL might be out of sync with service pack changes.
There are two other methods you can try to set the SQLStatement,
1. USe...
November 9, 2003 at 3:36 pm
Can you run the VB program as a scheduled job without using DTS?
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
November 9, 2003 at 3:28 pm
Regardless of how its developed, or where it's stored, the DTS package will always run where it was executed from.
EG: If you use SQL Enterprise Manager on your workstation to...
November 6, 2003 at 6:46 pm
The ST-INFO/SYSTEM account is a local account. You won't be able to use that account on the other server. Are your servers running on a domain? If so, try using...
November 6, 2003 at 2:33 pm
Do you have any MsgBox or InputBox statements? They won't work when running as a scheduled Job.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
November 5, 2003 at 2:36 pm
If your service packs are up-to-date, then there shouldn't be any problems. There were some changes to the object model between the service packs.
Hope this helps
Phill Carter
--------------------
Colt 45 - the...
November 4, 2003 at 3:48 pm
Do you have Function Main() at the start and End Function at the end?
These are required for ActiveX Scripts in SQL but not for stand-alone VBScripts.
Hope this helps
Phill Carter
--------------------
Colt 45...
November 4, 2003 at 3:39 pm
Viewing 15 posts - 1,966 through 1,980 (of 2,486 total)