Viewing 15 posts - 46 through 60 (of 87 total)
Thanks a lot!!! That worked great!!!
January 2, 2007 at 12:57 pm
Thanks for all the feedback. I actually used real data in my test database and both sql statements return the same expected results...based on the execution plan results, I will be...
December 29, 2006 at 8:24 am
I changed the first sql script, with additional parenthesis which should now have the same result as the second script, is as follows:
SELECT * from tblSerial
WHERE ((orderNumber=@ordernumber AND UPCCode=@UPCCode AND
Stage='TOP' AND...
December 27, 2006 at 2:57 pm
Thank you both for your timely feedback...that fixed my issue.
September 20, 2006 at 6:56 am
I used the ip address and was able to open a dts i had problems with before, and then i opened a new dts and got this message...
MMC has detected...
August 28, 2006 at 10:38 am
I applied the hotfix 818...so both versions are 8.00.818 and I still have the same problems...some of the dts packages created with user with old domain name...we have recently migrated...
August 28, 2006 at 10:29 am
I can not open the dts from the server...the connections are sql server.
on my pc, i have 8.00.818 sp3 std edition
on my server, i have 8.00.760 sp3 std edition
August 28, 2006 at 9:29 am
I have the DTS on BISRV Server using 2 connections to other sql servers..so the connections are not local. I was able to log onto the BISRV server and open...
August 28, 2006 at 7:55 am
The database is in Simple mode already, and I do not want to increase the log size due to disk size. I will try to break the update into smaller...
August 9, 2006 at 10:17 am
I am not familiar with STUFF and REPLICATE function, but based on your example, I was able to do the following with TRIM functions:
insert into wrkSeams (DeltaLength,lengthYards,seamNumber,rollID,AFrameID,lotNumber,Barcode)
select
rtrim(ltrim(substring(comments,(charindex('DeltaLegth:',comments)+13),(charindex('Seam Number:',comments)-13)))) as DeltaLength,
substring(rtrim(ltrim(substring(comments,(charindex('DeltaLegth:',comments)+13),(charindex('Seam...
May 26, 2006 at 1:32 pm
I need to extract the Length, Seam, Roll, Lot Number, and Bar Code
from the comment field (History table) and eventually insert this back into the table where these records have been...
May 26, 2006 at 9:27 am
Does anyone have an example of DTS using the Data Driven Query task to perform insert else update task?
May 18, 2006 at 8:54 am
I use DTS & Informatica PowerCenter for our ETL to send data to our BI Warehouse on a sql server.
Sending the data or creating the tables is not what I am looking for.
What...
April 28, 2006 at 7:58 am
This is the latest code:
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
BEGIN TRANSACTION
SELECT TOP 1 trackingCode
FROM tblSerial ( READPAST, ROWLOCK)
ORDER BY cTime
COMMIT TRANSACTION
I get the following error:
Server: Msg 650, Level 16,...
February 8, 2006 at 7:11 am
I ran both queries and the second did fetch the record.
I also tried to add the 'BEGIN TRANSACTION' and 'COMMIT' statements; but that did not help.
February 7, 2006 at 12:52 pm
Viewing 15 posts - 46 through 60 (of 87 total)