Viewing 15 posts - 1 through 15 (of 21 total)
What you can maybe do is before you do your select statement is get a count of your results table put it into a variable @var1.
Have a second variable...
November 10, 2003 at 1:16 pm
What kind of task are you using?
SQL Task.
If the SQL works in the query analyzer,
maybe you can put the code in a stored procedure and call that procedure from the...
November 7, 2003 at 8:06 am
you can use an update of all the fields except for the Key value.
Can say
update table set ....
where key_table1 = key_table2
November 3, 2003 at 7:54 am
Im not sure if I get it.
You have two packages that populate two tables. One in test and one in production?
If thats it then you can use an SQL...
October 24, 2003 at 1:25 pm
Here is a quick example of how I use it...
I have a table called Lookup_Employee with columns Employee Id and Employee Name.
I read a source DB and before I add...
October 16, 2003 at 9:52 am
Let me rephrase, is there a way I can read the last date a package was ran?
September 19, 2003 at 1:43 pm
You can use SQL Tasks to create the table, use it and then using another Sql Task to delete the table
September 17, 2003 at 1:46 pm
thanks ripg1011
that did the trick.
I had my < & > inversed
September 17, 2003 at 10:54 am
I dont know of any limitations. Its a pretty powerfull tool. The learning curve is a bit more than for example Informatica but its a grewat tool.
September 2, 2003 at 8:02 am
Check if your target table allows NULL's. If not let it allow NULL's and check the data when it is inserted into the table.
August 28, 2003 at 9:40 am
The only thing I can think of is in your members table, the member name column has a NULL and in your new table member name column is set to...
August 28, 2003 at 7:10 am
I had a vert similar issue. I solved by deleting the task and recreating it. That solved my problem.
Also for my own information is your On Failure Active X...
August 27, 2003 at 9:56 am
I dont know if I'm taking this to litteraly but your insert statemtnt in not corect.
You should have it as
INSERT INTO TABLENAME (COL,...)
SELECT....FROM...WHERE...
Also a suggestion if you can stay away...
August 27, 2003 at 9:43 am
Viewing 15 posts - 1 through 15 (of 21 total)