Viewing 10 posts - 91 through 100 (of 100 total)
Your information was great. Thanks very much for your help.
March 18, 2004 at 2:54 pm
Changed the code and received the same error. However if I do the following it works:
Dim oPackage
Set oPackage=DTSGlobalVariables.Parent
Dim oTask
Set oTask=oPackage.("DTSStep_DTSDataPumpTask_1")
-->I removed ".Tasks"
That doesn't seem right. Eventually I want...
March 18, 2004 at 1:47 pm
Not a pretty solution but:
you could have a table on your sql server that takes an insert statement from the application via ODBC. Have a job step check the value...
March 16, 2004 at 9:55 am
You could consider executing from the command line using dtsrunui or dtsrun straight from the command line.
Books online:
March 16, 2004 at 8:23 am
Not sure if I follow completely. How about some sample data from your source and some data for the desired outcome (target).
March 15, 2004 at 1:49 pm
For sp's:
Causes stored procedures and triggers to be recompiled the next time they are run.
sp_recompile [ @objname = ] 'object'
-Not familiar with recompiling views or udf's
March 10, 2004 at 3:26 pm
DO you want something like this:
CREATE PROCEDURE Return_Example @Value INT OUTPUT
AS
SELECT @Value = MAX(date) FROM
--this can be any logic you want including complex IF logic
go
declare @Value numeric
exec return_example @value=@value...
March 10, 2004 at 12:17 pm
I got this to work. If anyone is interested this is how I did it.
1) Rename old msolap80.dll (precaution only) to msolap80.dll.replace
location should be something like: C:\program files\common files\system\ole db
2)...
March 4, 2004 at 2:34 pm
Set 4 different global variables to a string type with a value for a .UDL file location on the server. (Example value: C:\DTS\Source 1.udl)
To create a UDL file,...
December 17, 2003 at 1:24 pm
Are you deriving the totals on a rolling basis or are they stored. Also, does the total continue to aggregate? Anyway I can see a sample small sample...
June 26, 2003 at 2:34 pm
Viewing 10 posts - 91 through 100 (of 100 total)