Viewing 15 posts - 166 through 180 (of 382 total)
What is the code that you used to print the text?
February 12, 2007 at 2:22 pm
The message box will display if you run the task interactively. In a job, I believe it will stop the activex script from running.
February 12, 2007 at 2:20 pm
I find that I have to disable the step (workflow, disable), then I re-enable in code:
Option Explicit
Function Main()
Dim oPkg
Dim oStep
' Get reference to the Package
'------------------------------------------------
Set oPkg = DTSGlobalVariables.Parent
' Used...
February 12, 2007 at 11:23 am
Are you logging the package? You can look at the package log to see if perhaps there are errors with some of the steps.
February 9, 2007 at 2:37 pm
Is the query timing out?
If you can trap the error, sometimes the DBEngine.Errors collection will give you a list of much more intelligent errors. http://www.devx.com/tips/Tip/12413
February 7, 2007 at 4:59 pm
Using anything other than the DTS Designer will hose the display. If I am going to only use code once to alter the DTS package, I do it at the...
February 7, 2007 at 4:56 pm
It isn't too hard. First, though, what is it you want to do once you open the saved DTS package? This will color my recommendation.
February 7, 2007 at 4:50 pm
I wasn't able to replicate your error.
What I normally do is to generate scripts on the source database, then run those scripts on the destination. Then I just do a regular...
February 6, 2007 at 4:27 pm
The database file is indeed completely empty.
Do you have a back up of the mdb? The access database should not have any data, just tables linked to the SQL Server,...
February 6, 2007 at 10:19 am
The web application (yes, there is an application there) that has a web page called index.asp is running a query on line 85. Somewhere before that is a connection string...
February 6, 2007 at 9:11 am
Just so that I am clear. From all of your post, you have an Access database (mdb) that has a linked table that is a SQL server table. But you...
February 6, 2007 at 5:46 am
By default, SQL recognizes mm/dd/yy. However put the following statement before your query and it should work:
SET DATEFORMAT DMY
Or you can use:
select convert(datetime, left(finfo,20), 103) frpm #t
Thanks for the question...
February 5, 2007 at 7:28 pm
I'm going to assume that you are using Query Analyzer.
In the Tools menu, select the Options menu. Click on the Connection Properties tab. About half way down there is a...
February 5, 2007 at 1:49 pm
When you run your original query do any of the records have a null masterregis.claimstatus? Also, is there are record in [status table] where claimstatusid has a value of '' (empty...
February 5, 2007 at 1:19 pm
I'm still not clear what you are trying to do and what you mean by null values. The change you provide actually doesn't change the query at all, since the...
February 5, 2007 at 12:50 pm
Viewing 15 posts - 166 through 180 (of 382 total)