Viewing 13 posts - 106 through 118 (of 118 total)
I agree with above also if it is always the 15th file you can edit your loop to pick up that specific file name. I would guess that the...
January 5, 2011 at 7:02 am
Correct sql is
select * from tempdb..sysobjects where name like '%#testvm%'
November 22, 2010 at 6:28 am
ISNULL and COALESCE though equivalent, can behave differently. An expression involving ISNULL with non-null parameters is considered to be NOT NULL, while expressions involving COALESCE with non-null parameters is considered...
November 12, 2010 at 7:26 am
Are the images not showing up for anyone else?
Even when I right click and say Show Picture nothing happens.
November 10, 2010 at 6:20 am
Good Article. Two suggestions
I would make the attribute appear in the same code window as the method. At first it looks confusing because you have
<Microsoft.SqlServer.Server.SqlProcedure()>...
November 4, 2010 at 4:37 am
Good question but I think a better explaination is:
the default of decimal without parameters is (18,0) thus making 1.09 -> 1 and then the ceiling of 1 is 1
November 2, 2010 at 6:39 am
This is absured and I will use the same logic Hugo used on the question about creating a table with []... How does the deception in this question help in...
October 15, 2010 at 7:21 am
UMG Developer (9/28/2010)
Without that option it was really a test of transactions, not...
September 29, 2010 at 6:02 am
Thank you for the question and the detailed explaination
August 31, 2010 at 6:14 am
It sounds like you are going to have to have a script task in your loop to determine which file you have. You can then set a variable and...
February 17, 2009 at 9:13 am
You're right, sorry to lead you astray
To answer your original question after I added the reference
Microsoft.SqlServer.DTSRuntimeWrap
I was able to type the imports statement
Imports Microsoft.SqlServer.Dts.Runtime.Wrapper
Now what you can do with...
February 17, 2009 at 8:51 am
I do not see why you need a reference for that. Note that for DataFlow Script Task it is already included.
What I would try is create two variables...
February 17, 2009 at 8:26 am
Viewing 13 posts - 106 through 118 (of 118 total)