Viewing 15 posts - 346 through 360 (of 1,124 total)
First of all for all your future posts, read this article http://www.sqlservercentral.com/articles/T-SQL/61539/%5B/url%5D. This makes us save a lot of time generating table and insert scripts.
IF ( OBJECT_ID( 'tempdb..#SomeTable' )...
April 2, 2009 at 9:07 am
Can you add a print screen of the Send Mail Task Expression Editor?
April 2, 2009 at 8:57 am
Personally, I use the BEGIN/END approach as it binds the logical block of statements to the context it has been created in. And thereby making it clear to understand...
April 2, 2009 at 8:54 am
A Little Help Please (4/2/2009)
The package does not excute, it fails and says:
Nonfatal errors occured while saving the package
The connection "SmtpServer=" not...
April 2, 2009 at 8:40 am
Bob Hovious (4/2/2009)
I applaud your attitude, but you will eventually find it is wasted on this particular person. I started out with...
April 2, 2009 at 8:38 am
GilaMonster (4/2/2009)
Ramesh (4/2/2009)
Anyways, I still think that he deserves a little more help and that too if he shows his willingness to learn and try things on his own.
We've tried...
April 2, 2009 at 8:31 am
Can you post the exact error message that you are getting when executing the package?
And also check if the query returns any rows.
April 2, 2009 at 8:11 am
nimdil (4/2/2009)
Wow, thanks for the solution. It makes code look simpler.Do you know why the first syntax returns error? Shouldn't they be equivalent or s.t.?
I'm still trying find why it...
April 2, 2009 at 8:10 am
Chris Morris (4/1/2009)
Steve Jones - Editor (4/1/2009)
Lynn Pettis (4/1/2009)
Must not be a critical piece in the scope of things, huh.At least not to his boss :w00t:
Good grief, it's the White...
April 2, 2009 at 7:07 am
It means that the report field will have 1 digit after decimal, rounding to 1 digit and negative number appearance format. For e.g. 123.1, -24.1, 14.0, -987.2
April 2, 2009 at 6:56 am
First make sure that the variable used in the expression is what you have declared in the package variables and also the scope in which it was declared.
When you are...
April 2, 2009 at 6:09 am
I don't why the IIF solution is not working, but may be you can try converting IIF into SWITCH and check if it works.
Here is the IIF code converted into...
April 2, 2009 at 6:03 am
Go to "Send Mail Task Editor" > Expressions > Select Property "SmtpConnection" & in Expresssions type
"SmtpServer=" + @[User::Parameter]
April 2, 2009 at 5:43 am
DECLARE @Column VARCHAR(100),
@sql NVARCHAR(MAX)
SELECT @Column = 'name',
@sql = 'SELECT [' + @Column +...
April 2, 2009 at 4:54 am
Sure...
1. Create 1 OLEDB SQL Connection
2. Drag 1 Execute SQL Task to Control Flow
3. In Execute SQL Task General Properties, Set Resultset = "Single row", Select the Connection, Set SQLSourceType...
April 2, 2009 at 4:45 am
Viewing 15 posts - 346 through 360 (of 1,124 total)