Viewing 15 posts - 1 through 15 (of 27 total)
Yep,
The Expression is set against the PackageName property:
@[User::strPackageName]
If I evaluate the expression I get the following text:
\Markets\Import_BMUunit_GCDC
I have tried coping and pasting the above string into the execute task explicitly...
May 10, 2010 at 8:30 am
Yep tried that too.
The error only comes about the moment the variable is used in the expression. If I call the same package directly (i.e. no expression) there are...
May 10, 2010 at 8:20 am
Hi. I've tried this but still having the same problem, any more ideas anyone? Thanks
May 10, 2010 at 8:09 am
-------------- SOLUTION -----------------------------------
After playing around with this I now have the solution for you.
In the parameter:
Go to default values
Select Specific Values
Enter the Value(not the label)
i.e.
id name
1 ...
April 1, 2010 at 5:31 am
Obviously I don't know exactly what your package is trying to do but....
If your package is reading from a source file such as a csv, spreadsheet, text file etc...
Then you...
November 19, 2009 at 8:24 am
Perfect thanks, just had to move the exec statment out of the loop and it worked perfectly.
Thanks all
November 17, 2009 at 8:11 am
Thanks that helps....
but
I still have the issue where I can not execute the dynamic string after building it. I still have to copy and paste the content to another...
November 17, 2009 at 5:45 am
Jez, which ever method you choose, you should still familiarise yourself with CTEs because they are v useful.
November 11, 2009 at 3:00 am
Jez,
For an explanation on how Common Table Expressions (CTE) work please read the following article...
http://www.4guysfromrolla.com/webtech/071906-1.shtml
lmu92, I agree you could do the same in one query but I find that it...
November 11, 2009 at 2:44 am
My bad, try this one...
;WITH cteSQL1 as
(
SELECT
ROW_NUMBER() OVER (ORDER BY AREA)AS RowNumber,
...
November 10, 2009 at 9:13 am
Hi,
Using a CTE you should be able to get the desired effect.
Please see example code below...
Let me know if you have any issues...
🙂
;WITH cteSQL1 as
(
SELECT
ROW_NUMBER() OVER (ORDER BY...
November 10, 2009 at 8:27 am
Not to be too pedantic but thats assuming they use a sourcesafe solution :hehe:
November 4, 2009 at 10:16 am
Hi,
SQL Server does have a native wizard for generating object scripts.
In the Object Explorer view in SSMS.
Follow the steps below:
1. Right click on the db which has the stored procedures...
November 4, 2009 at 10:08 am
Hi,
If you want some more help then I will need you to create a example tables for the procedure.
I can not replicate your problem because I obviously don't have your...
November 4, 2009 at 7:46 am
Viewing 15 posts - 1 through 15 (of 27 total)