Viewing 15 posts - 1,396 through 1,410 (of 2,487 total)
Where are you looking to use this IIF EMPTY command? In the report itself, or in an SQL statement?
You can use IIF in expressions within the report. For the SQL...
March 17, 2005 at 12:12 am
Have a look through this Powerpoint presentation from a meeting we had last night.
http://www.sqlserver.org.au/resources/ViewResource.aspx?resourceId=33
March 17, 2005 at 12:09 am
Take a look at this lively thread ![]()
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=165207
March 17, 2005 at 12:03 am
When the variables show <not displayable> for the value, you cant change them.![]()
You'll have to delete the global variables and start again. When you...
March 16, 2005 at 11:58 pm
It's one of my favourite tools. It even comes in a command-line version ![]()
March 16, 2005 at 11:54 pm
This is all down to the initial package design.
What I have is a single table that stores all the global variables for my packages. These are global variables for various...
March 16, 2005 at 11:50 pm
If the BUILTIN\Administrators group hasn't been removed, when you connect with a windows account that has admin privelages you should be granted sysadmin privelages. Once connected you can change the...
March 16, 2005 at 5:10 pm
Is "SQL-1-SRV" the name of your server? Could be part of the problem, I've heard of people having problems with different tools when they have "-" in the server name.
Other...
March 16, 2005 at 3:31 pm
Have you tried using the FTP task in DTS? A what point doesn't it cater for your needs?
March 16, 2005 at 3:02 pm
How about using the FTP task that comes with DTS, or even this handy replacement by the guys at SQLDTS??
http://www.sqldts.com/default.aspx?302
March 15, 2005 at 6:40 pm
How about creating a DTS package and saving it as a VB file?
March 15, 2005 at 2:39 pm
I think the magical potion you're looking for is something like
CONVERT(datetime, STUFF(STUFF(sjh.run_date,7,0,'-'),5,0,'-') + ' ' + STUFF(STUFF(REPLACE(STR(sjh.run_time,6),' ','0'),5,0,':'),3,0,':'), 120)
You might need to add "SET DATEFORMAT ymd" at the...
March 15, 2005 at 2:38 pm
No problem. It's always a pleasure to help with the simple problems ![]()
![]()
March 15, 2005 at 2:15 pm
Hmmm ... must be something else here. Just ran a little test myself,
CREATE Table tt_basetable ( field1 int , field2 int , field3 char(3) , field4 int , field5 int )CREATE Table tt_arctable ( field1 int , field2...
March 14, 2005 at 8:44 pm
The error you're getting is a MAPI Login failure. Do you specifically have to use SQL Mail functioanlity? eg: xp_sendmail, xp_readmail
If not I'd suggest you save yourself some headaches and...
March 14, 2005 at 7:25 pm
Viewing 15 posts - 1,396 through 1,410 (of 2,487 total)