Viewing 15 posts - 691 through 705 (of 927 total)
like i wanna display each pincodes how to make a code?
what do mean why above statement ?
March 10, 2014 at 4:05 am
check this one
http://stackoverflow.com/questions/577904/can-i-read-an-outlook-2003-2007-pst-file-in-c
March 10, 2014 at 3:46 am
smthembu (3/10/2014)
Thanks for your response. No row or page compression
you have two columns in this table
1. [Value] [varchar](max) NULL
2. [File] [varbinary](max) NULL
looks like a contain which holds the uploaded...
March 10, 2014 at 2:14 am
Boy donot use Max(ID) +1, you will get into a very big and stinky hole if your application run in a multi-user environment. trust me on this one,
just think...
March 10, 2014 at 2:08 am
Koen Verbeeck (3/10/2014)
yuvipoy (3/10/2014)
twin.devil (3/10/2014)
when you say performance... what exactly you are referring to? do you want this column to be primary key as well ?
No. I dont wnat this...
March 10, 2014 at 1:58 am
when you say performance... what exactly you are referring to? do you want this column to be primary key as well ?
March 10, 2014 at 1:30 am
vsamuel (3/10/2014)
March 10, 2014 at 1:15 am
It a very simple replace working. to split a comma separated data into a table. 🙂
Let break it down for understanding
Replace Function Definition Replaces all occurrences of a specified...
March 5, 2014 at 3:23 am
check this one out it will give you a better idea
http://www.sqlservercentral.com/Forums/Topic1232689-392-1.aspx
March 5, 2014 at 2:26 am
This will get you going
Declare @varTable table ( varField varchar(20))
insert into @varTable
select 'ABC' union all
select '12.00' union all
select '12' union all
select '1' union all
select '0.1' union all
select '121a123' union...
March 4, 2014 at 6:31 am
its failing on the join condition .... your other table have a data type of float.
you with ensure that data on which you are joining should be of numeric type.
apply...
March 4, 2014 at 6:13 am
to be sure try to try this
1. execute that query on the sql server, get the Server Name and database from the connection string you are using in the...
March 4, 2014 at 4:14 am
Viewing 15 posts - 691 through 705 (of 927 total)