Viewing 15 posts - 1,741 through 1,755 (of 2,486 total)
You really have two paths to achieve this.
1) use a Data driven query. This way you supply T-SQL statments for each of the actions (INSERT/UPDATE/Etc...) and the data transformation is...
June 17, 2004 at 6:32 pm
Have you run aspnet_regiis.exe to register ASP.Net with IIS?
June 17, 2004 at 5:55 pm
How about this?
select fk_assid, CASE WHEN sum(datediff(n,wt_starttime,wt_stoptime)) IS NULL THEN '0' ELSE sum(datediff(n,wt_starttime,isnull(wt_stoptime,getdate()))) END as 'timespent', SUM(CASE WHEN datediff(d, CONVERT(varchar(15), GetDate(), 106), CONVERT(varchar(15), wt_starttime, 106)) = 0 THEN datediff(n,wt_starttime,isnull(wt_stoptime,getdate())) ELSE '0' END) ...
June 16, 2004 at 11:57 pm
If you run the stored procedure without any parameters it will return everything since midnight. If you want to change that just alter the line after the "IF @dteMinStart IS...
June 16, 2004 at 10:34 pm
Look up sp_executeSQL in Books Online.
June 16, 2004 at 10:00 pm
Here's what we have for our status check. This is used to check on 80+ packages, of which about a dozen run on an hourly basis, the rest run overnight.
It...
June 15, 2004 at 9:25 pm
Firstly, what error is the package failing with?
Second, why not just trigger the scheduled job from your ASP page using sp_start_job?
June 10, 2004 at 5:10 pm
Another quick way to check space usage for columns is to look at the length field in EM's table design screen.
June 10, 2004 at 4:57 pm
Good solution.
Funnily enough, after working on something else for a day, I came back to this and knocked up a similar query. Amazing what a clear head can do
June 9, 2004 at 5:19 pm
Are you able to, or have you, logged in locally on the server(not via Remote Desktop) using the SQL account? Try running the package manually like this and see if...
June 9, 2004 at 4:30 pm
Ahhh ... yes ... DTS in all it's glory.
When I'm trying to track down a pesky problem I do the following.
Turn on DTS package logging.
Set each task to fail package...
June 9, 2004 at 4:24 pm
One option is to use some logic to check the source columns before you concatenate them.
Eg:
If DTSSource("Col009") is null
DTSDestination("CLO") = DTSSource("Col010")
elseif DTSSource("Col010") is null
DTSDestination("CLO") = DTSSource("Col009")
June 9, 2004 at 4:21 pm
The only real way to get this to work is by using workflow scripts.
Take a look at this article,
June 9, 2004 at 4:17 pm
Ok, I created the table, built a DTS package, put the select query into the source and successfully ran the package.
What options have you used for the csv file?
May 21, 2004 at 1:31 am
Viewing 15 posts - 1,741 through 1,755 (of 2,486 total)