Viewing 15 posts - 61 through 75 (of 172 total)
you'd have to set up a new data source to run sql queries
August 4, 2006 at 12:11 pm
Oops! forgot the environment is SQL Reporting Services 2000, Visual C# 1.1
August 2, 2006 at 9:42 am
I'm not real familiar with SMB either. But i think you could just truncate your message when you call the transmission procedure.
-- @Message the message you want to send
-- @headerlen...
July 28, 2006 at 10:15 am
oops left off a bunch of those pesky quote marks
objCMD.CommandText = objCMD.CommandText & "@message= "" " + DTSGlobalVariables("Path").Value + """"
July 27, 2006 at 2:04 pm
Hmmm, truthfully I don't use it much. Instead I rely on one of the queries in Step 4 above to handle those for me.
July 27, 2006 at 1:44 pm
Agreed, if your programmer wants to refer to the row that contains 'apple' then he should use that in his where clause. What is he doing that he thinks he...
July 27, 2006 at 1:35 pm
change the expression
objCMD.CommandText = objCMD.CommandText & "@message= DTSGlobalVariables("Path").Value "
to look like
objCMD.CommandText = objCMD.CommandText & "@message= " + DTSGlobalVariables("Path").Value
July 27, 2006 at 1:31 pm
When you create your table you can specify a default value for the column
create table mystuff ( bob varchar (50) Default 'Stuff' )
so when there would otherwise be a Null...
July 27, 2006 at 1:28 pm
When you let the application make its best guess on the field sizes and types it only looks at the first few rows. So its not unusual to get data...
July 27, 2006 at 1:14 pm
it sounds like you are looking for all the words that contain 'Hello' if thats the case change your where clause to look like
WHERE word like '%' + 'hello' + '%'
this...
July 27, 2006 at 1:03 pm
Change the structure of the IF statement so that the rest of the processing is only done when the file exists. Note that the MoveNext and Path assignment are moved...
July 27, 2006 at 12:53 pm
Sorry Steve, I haven't had an opportunity to explore SSIS yet.
July 27, 2006 at 11:32 am
change the code from the example to look something like this inside the Try portion of the routine:
' DTS Varialbe "Destination" is a path to write the...
July 26, 2006 at 9:23 am
is there a way for the subreport to jam a value into the main report?
July 24, 2006 at 12:22 pm
Make a table something like:
create table TimeLog(
EventDT datetime not null,
StartStop varchar(5) not null,
AppName varchar(25) not null,
Info varchar(200) null
)
Then at the start of the process you want to time:
insert...
July 24, 2006 at 9:00 am
Viewing 15 posts - 61 through 75 (of 172 total)