Viewing 15 posts - 11,371 through 11,385 (of 13,877 total)
Interesting.
My first thought is to move the scheduling logic to a new script task at the beginning of the package, which executes the subsequent tasks if the conditions are...
June 1, 2011 at 10:16 am
Did you manage to automate the FTP part? How did you do it?
June 1, 2011 at 9:45 am
awaisahmad435 (6/1/2011)
I WANT TO ELIMINATE IN CLASS.... IS THAT POSSIBLE
update TBL_DEGREE_COURE_MASTER
set flag = 'FREE', flagtime = 'Application Crashed'
where SYSTEMID IN
(select b.systemid
from sys.dm_exec_connections...
June 1, 2011 at 9:30 am
For those who have trouble with SQL in plain text, here it is again with formatting:
CREATE PROCEDURE Refresh_Lock
AS
DECLARE @AccountID VARCHAR(100)
DECLARE @getAccountID CURSOR
SET @getAccountID = CURSOR FOR
SELECT TABLENAME
FROM DBO.TMP
OPEN @getAccountID
FETCH...
June 1, 2011 at 4:48 am
I would try putting package 1 in a sequence container and then adding the constraint from that to package 2.
June 1, 2011 at 1:10 am
..and if you access 2005 packages using 2008, you will have to upgrade them before they can be amended. Once they've been upgraded, they will no longer open in 2005.
May 31, 2011 at 2:13 am
prashavhad (5/31/2011)
Use Bcp Utility for this,create your format file without mentioning -t in format file
Thanks & Regards,
Prashant Avhad
How does this solution address the ftp requirement?
May 31, 2011 at 12:28 am
if you don't include a question in your post, how can you expect an answer?
May 28, 2011 at 4:42 am
Sounds like a simple SSIS package just waiting to be written ...
May 27, 2011 at 12:22 pm
I would advise you to consider a modification to your update methodology. With large datasets, this RBAR method performs badly.
A faster alternative is to send the records to be updated...
May 27, 2011 at 10:45 am
Great. My pleasure.
May 27, 2011 at 5:38 am
Ah yes, I see.
You could try this sort of thing:
SET @finalQuery = 'SELECT acc.[ACCOUNT], acc.[NOIND], tr.[S''mentdate]'
May 27, 2011 at 4:46 am
I'm not 100% sure what that code is doing, but I'm guessing that somehow the derived SELECT query is being used to create a table on SQL Server?
If so, just...
May 27, 2011 at 4:17 am
What is your question?
May 27, 2011 at 3:35 am
tulenkog (5/26/2011)
And when the data conversion component doesn't work, what else can you try?--
Sorry dude: it does work, I can assure you.
May 27, 2011 at 1:54 am
Viewing 15 posts - 11,371 through 11,385 (of 13,877 total)