Hello Folks
We migrated our nt server to a newer machine (w2000). The sql server was moved by creating the databases on the new machine, and then exporting them from the old to the new machine...
Now, what is my problem:
When I have an update or an insert query like this:
insert into table(StringValue1, FloatValue1, FloatValue2) values('thisisatest','4,45','5,45')
I get an error on the new server: "error converting datatype varchar to float". The old server runs the query fine.
When I use '.' instead of ',' the query gives no errors on the new server (but, of course, gives errors on the old server).
Is there a setting somewhere where you can set your decimal sign? How can I let my new sql server accept ',' again for decimal sign?
This is a very urgent matter because all of my vb programmation works with the ',' as the decimal sign...
Thanx in advance
Greetz
Mim
We migrated our nt server to a newer machine (w2000). The sql server was moved by creating the databases on the new machine, and then exporting them from the old to the new machine...
Now, what is my problem:
When I have an update or an insert query like this:
insert into table(StringValue1, FloatValue1, FloatValue2) values('thisisatest','4,45','5,45')
I get an error on the new server: "error converting datatype varchar to float". The old server runs the query fine.
When I use '.' instead of ',' the query gives no errors on the new server (but, of course, gives errors on the old server).
Is there a setting somewhere where you can set your decimal sign? How can I let my new sql server accept ',' again for decimal sign?
This is a very urgent matter because all of my vb programmation works with the ',' as the decimal sign...
Thanx in advance
Greetz
Mim