We're converting sybase 11 to MS Sql 7. we are generating sybase scripts intoMS ones using MS ...
By hbb
I tried it in SQL Server 2000:CREATE TABLE Foobar (val INTEGER NOT NULL);INSERT INTO Foobar VALUES (...
By celko
"mrdualspace" <jpolasek@cfl.rr.com> wrote in messagenews:1130609070.892511.254560@f14g2000cwb....
By fredifizzx
and then query the sqlite_master for thenames of other indexes use PRAGMA index_list(table-name) and...
By kurtwelgehausen
Hi to all!Could you suggest me a database manipulation class that will make it easy to work with dat...
By sodrian, 6 Comments
I have a program that are multi-user and one of the window open data that are in a database. I have ...
By daok, 2 Comments
How Can I make a simple portal where in each row there is one of thefields of each record in the cur...
By davey, 4 Comments
After spending overnight 12 hours on the computer I am finally getting somewhere with making my form...
By ladyinpurple, 5 Comments
Can anyone reccomend a good database management program(for likecreating/editing db's/tables/qu...
By oliver_garraux, 2 Comments
0001 is a text field - we would store that as VARCHAR(4).
Leading 0's are not supported in a numeric type of field - those fields store numbers and leading 0's, being not significant, are simply discarded.
szlamany | Wed, 05 Dec 2007 19:40:00 GMT |
In other words, if you want the leading zero's change the field type from number to text, otherwise, those zeros will continue to be dropped.
hack | Wed, 05 Dec 2007 19:41:00 GMT |