Hi,
Can anybody help me what is the datatype for alphanumeric value in sql server. i have set char and varchar but not getting output, please can anybody help me.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
sasi kumarPosted Oct 22, 2018, 6:56 AM
Jayesh VaghasiyaPosted Oct 22, 2018, 5:22 AM
Abe GarbaPosted Jan 4, 2013, 8:45 AM
Abe GarbaPosted Jan 4, 2013, 8:43 AM
Pravin MorePosted Oct 21, 2011, 8:41 AM
AshwiniPosted Oct 21, 2011, 5:21 AM
sorry if anything wrong is there. In this product id contailns alphanumeric values and also in some places decimal values
alphanumeric and decimal values are not copied properly in database table. please refer it and tell me which datatype is
suited for this. Really thanks for your replay.
Pravin MorePosted Oct 21, 2011, 3:59 AM
better is dont add attachment just paste image here in editor through paint or somthing.
AshwiniPosted Oct 21, 2011, 3:43 AM
Pravin MorePosted Oct 21, 2011, 12:36 AM
Thanx
AshwiniPosted Oct 21, 2011, 12:26 AM
Pravin MorePosted Oct 20, 2011, 4:52 AM
AshwiniPosted Oct 20, 2011, 4:01 AM
i have sent my excel sheet through attached file please download it for reference. in this sheet product id column values are showing as NULL after copied to the database table. please help me regarding this.
Pravin MorePosted Oct 19, 2011, 7:57 AM
datatype is correct.............can you show image of excel file. i want to see column that is showing null value.
Thanx
Pravin.
AshwiniPosted Oct 19, 2011, 3:42 AM
i have set datatype to varchar(max) only but still it has some problem, please help me regarding this.
Prabhu RajaPosted Oct 19, 2011, 3:09 AM
AshwiniPosted Oct 19, 2011, 3:04 AM
What i am doing is, in excel sheet i am having around 50000 rows of data, iam coping this excel sheet data to sql data base table by using the import and export functions in sql server, i have copied but in one column of excel sheet alphanumeric characters with decimal places is there for example 782ACg68.39. this data is not copied properly it showing NULL values for that particular row. i am not getting how to fix this problem. please help me regarding this.
AshwiniPosted Oct 19, 2011, 3:03 AM
What i am doing is, in excel sheet i am having around 50000 rows of data, iam coping this excel sheet data to sql data base table by using the import and export functions in sql server, i have copied but in one column of excel sheet alphanumeric characters with decimal places is there for example 782ACg68.39. this data is not copied properly it showing NULL values for that particular row. i am not getting how to fix this problem. please help me regarding this.
Pravin MorePosted Oct 18, 2011, 2:06 AM
can you please show your exact problem?
Hemant KumarPosted Oct 18, 2011, 1:41 AM
http://developer.mimer.com/documentation/html_92/Mimer_SQL_Mobile_DocSet/Syntax_Rules4.html
Priya LingePosted Oct 18, 2011, 1:40 AM
Please try this,
E.g :
create table chkdata
(alphavalues nvarchar(100),Id int identity(1,1))
insert into chkdata values('tyty5756765')
select * from chkdata
B06H8J9 1
tyty5756765 2
Hope this will help you.
Thanks.
Prabhu RajaPosted Oct 18, 2011, 1:39 AM