Viewing 7 posts - 1 through 7 (of 7 total)
I cannot use parse..
Using Sql 2008..
Thanks though it was really great info...
November 21, 2013 at 9:08 am
thank you guys...
i finally did it..
I used isdate to validate date datatypes
and isnumeric for others
i used the same syntax as that of the parse statement.....
Thank you
once again
November 21, 2013 at 7:30 am
shravan.gavva (11/20/2013)
it says i have a syntax error...doesnt matter how many times I checked..
I have hardly 129 rows. I checked it has in the format...
November 20, 2013 at 2:44 pm
I tried to use try-catch
it says i have a syntax error...doesnt matter how many times I checked..
I have hardly 129 datatypes. I checked it has in the format of...
November 20, 2013 at 2:43 pm
create table table1
(
data_value varchar (50),
sql_data_type varchar (50)
)
insert into table1(data_value,sql_data_type)
values ('11/02/2013', 'DATE')
insert into table1(data_value,sql_data_type)
values ('', 'DATE')
insert into table1(data_value,sql_data_type)
values (11.3, 'decimal')
insert into table1(data_value,sql_data_type)
values ('not assigned', 'DATE')
insert into table1(data_value,sql_data_type)
values (null, 'varchar')
insert into table1(data_value,sql_data_type)
values...
November 20, 2013 at 2:31 pm
I could not change the datatype of data_value
November 20, 2013 at 2:04 pm
Viewing 7 posts - 1 through 7 (of 7 total)