Re: [U2] sql server universe

2005-11-22 Thread David Tod Sigafoos
Daniel, SQL is pretty insistent on data being what it is defined as (a feature for some .. a drawback for others) Your best bet is to make your dictionaries match the data. Not sure I would actually make the fields lenght 999 but instead write a routine to examine the data and let you know the

RE: [U2] sql server universe

2005-11-22 Thread gerry-u2ug
my guess is that a numeric of size 999 will barf just as bad and on every value. simply specify the sql data type as something reasonable like DECIMAL,19,2 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Daniel Perttula Sent: Tuesday, November 22, 2005 6:41

RE: [U2] sql server universe {Unclassified}

2005-11-22 Thread HENDERSON MIKE, MR
David, -Original Message- From: [EMAIL PROTECTED] On Behalf Of David Tod Sigafoos Sent: Wednesday, 23 November 2005 16:06 To: Daniel Perttula Subject: Re: [U2] sql server universe Daniel, SQL is pretty insistent on data being what it is defined as (a feature for some