Viewing 15 posts - 4,606 through 4,620 (of 5,103 total)
Yes, (10A, 10, 2) is NOT at the bottom
isn't that the purpose ?
February 27, 2004 at 1:05 pm
I may need more details for the data types you are using
but this is an ex
Select m,b,l
From TableName
Order By Left(m,2),b,l
February 27, 2004 at 12:50 pm
Take a look at this script that creates a stored procedure that uses BCP to export data to a file
February 27, 2004 at 12:33 pm
To build the exact query I may need more info
But here is how you do it :
Update TableName SET FldZipcode = CASE WHEN Len(LTRIM(RTRIM(FldZipCode))) = 5 THEN FldZipCode ELSE Left(LTRIM(FldZipCode),5)...
February 27, 2004 at 12:27 pm
You have to use BCP or DTS but if you have connectivity with that other system may be you can use linked serves.
February 27, 2004 at 12:19 pm
did you change the VP.PK = VP2.PK for some fields that uniquelly identify the records?
I put PK just so you replace those because I don't know what is the undelying primary...
February 27, 2004 at 12:17 pm
That I believe has happened to everyone of us starting be me
February 27, 2004 at 11:10 am
For syntax BOL is pretty good you just have to read sometimes more that once what is explained...
February 27, 2004 at 10:56 am
SELECT firstname, lastname from Teacher_data_main
WHERE
(Firstname like '[FBC]%')
AND
Schoolnum = 371
February 27, 2004 at 10:39 am
Can you try somthing like this:
DELETE VP
FROM dbo.vw_part VP
JOIN
( SELECT *
FROM dbo.vw_part
WHERE dbo.vw_part.partition_number = 1
AND EXISTS (
SELECT NULL
FROM dbo.vw_part b
WHERE
b.recipient_id = dbo.vw_part.recipient_id
AND b.message_id...
February 27, 2004 at 10:36 am
select User
, SuM(Case when DocType ='Type1' then 1 ELSE 0 END) as Type1
, SuM(Case when DocType ='Type2' then 1 ELSE 0 END) as Type2
, SuM(Case when DocType ='Type3' then 1...
February 27, 2004 at 10:25 am
Are you trying to authenticate directly to SQL ? in that case you have to have that port open in your firewall
February 27, 2004 at 10:08 am
Good. when you are doing something in production ALWAYS, ALWAYS,ALWAYS ... did I said ALWAYS make sure you have...
February 27, 2004 at 10:06 am
Viewing 15 posts - 4,606 through 4,620 (of 5,103 total)