Viewing 15 posts - 256 through 270 (of 282 total)
I know the active X script doesn't really show much...the post would have been longer and more confusing if I would have posted the code for each look up.
The...
October 5, 2006 at 8:28 am
Here is the function I came up with that would do the logic I need...
DECLARE @location VARCHAR(3),
@LocID VARCHAR(5),
@LocType VARCHAR(3)
SET @LocID = '91A'
SET @LocType = 'HR'
SELECT @location = PlantCode
FROM DBA.dbo.tb_ci_Plants
WHERE PlantCode = @LocID
--If the...
October 5, 2006 at 8:04 am
You are my hero Greg...that was it. When I checked the version of QA, it
8.00.194 | RTM |
I ran the SP4 upgrade, rebooted and attempted the same task...works...
October 3, 2006 at 11:29 am
If I go on the server and login with the service account...I can get into the DTS no problem. However when I attempt to open a tansformation data task from...
October 3, 2006 at 9:10 am
Very interesting...I will try to log into the server and open the data task there and see if there is any difference...
I was going to try to log into the...
October 2, 2006 at 10:41 am
Hi Sergiy,
I am not 100% following your comment that you don't believe it could take 30 seconds...but I will try my best at the reply. The SP goes through a...
September 25, 2006 at 9:00 am
This is on a test server I am running the sp on, so I am the only one on it. And the process is the only thing running. So I...
September 25, 2006 at 8:55 am
The execution is the same, I have NOCOUNT ON, and the time doesn't matter when I run it (job schedule) always seems to be slow.
I don't know about the...
September 23, 2006 at 5:38 am
I am not insisting on using them like they are my favorite thing in the world...I inherited the code from the previous person who wrote something similar and I would...
September 19, 2006 at 7:45 am
I haven't had too much extra time at the moment to work on this process further.....
Sreejith I looked at the last post of yours, and the example you left for...
September 18, 2006 at 10:35 am
Looks good...I think this might work. I am going to have to test it out on some senerios and see what it turns up !!
Thanks again for the logic
Lee
September 15, 2006 at 11:37 am
YES ...that is it...in a nutshell.
September 15, 2006 at 9:39 am
This process is supposed to pull out the information from a master table...filter it down....get the most recent record based on the revision number and the status (A,D,H,I) in that...
September 15, 2006 at 9:04 am
HI Jeff,
I shouldn't have used the term Dataset...that probably was confusing. I have this process working with the cursor...but I am always open to different and better ways to optimize...
September 15, 2006 at 8:08 am
Unless someone can recommend a different way to do this I think I need to use a cursor. I will break it down as simple as I can.
I have TABLE...
September 15, 2006 at 7:56 am
Viewing 15 posts - 256 through 270 (of 282 total)