Viewing 15 posts - 2,956 through 2,970 (of 6,036 total)
rbarryyoung (6/21/2008)
--remove the old leftover records:
Delete from TAB
Where NOT Sex IN('F','M')
Male/Female you say...
Look what professionals think about it:
http://www.nzhis.govt.nz/moh.nsf/pagesns/48/$File/4NMDSDataDictionaryv68.pdf
Go to page 118, chapter "Gender code".
See? 😛
June 26, 2008 at 6:05 pm
Play with isql utility.
It has full description in BOL.
Hopefully it's what you need.
June 26, 2008 at 3:48 pm
Jeff,
look again on the second post from OP.
He wants DIFFERENT OFFSETS for different days.
No matter how hard you try with GetUTCDate or registry reading it will always give you...
June 26, 2008 at 3:02 pm
No need for CASE at all.
RIGHT('0000' + cast(R.PostalCode as varchar(50), 5)
June 26, 2008 at 4:27 am
I saw such errors.
One of our servers has a limitation on amount of data returned to a client.
If any connection exceeds this limit server blocks further communications from this connection.
QA...
June 25, 2008 at 9:55 pm
Run this and see how many rows it will return:
select * from DATABASE.dbo.sysobjects
where name = 'TABLENAME'
June 25, 2008 at 3:12 pm
There is a way:
SET DATEFORMAT dmy
June 20, 2008 at 1:33 am
Can you explain what the point to have 3 identiacl rows?
And especially what's the point of keeping 2 of 3 identiacal rows?
Does it make any difference which 1 of 3...
June 19, 2008 at 11:13 pm
vish (6/19/2008)i just wanted to make it clear..
You did not succeed.
For me these lines:
LMN 27 M
LMN...
June 19, 2008 at 10:52 pm
vish,
I don't see any numbers assigned to the rows.
How can I tell which ones are 1,3,6,7?
June 19, 2008 at 10:36 pm
This will apply cross-join to Servers and steps, so every server will have every step assigned, and it will insert into the table all records from that cross-join which are...
June 19, 2008 at 6:53 pm
Easiest way - in QA menu click Query -> Show Server Trace.
June 19, 2008 at 5:16 pm
Don't EVER load file straight into a table.
Even if that file is perfectly formatted for your favourite upload process.
Load it into staging table (single varchar column, maybe even text), DO...
June 19, 2008 at 2:58 pm
Viewing 15 posts - 2,956 through 2,970 (of 6,036 total)