Viewing 15 posts - 61 through 75 (of 205 total)
Real table is including 300 columns with different column name and data type but datatable has 300 columns with name as column1, column2 ... column300. (imported from a csv fle)
Is...
November 4, 2014 at 10:49 am
Thank you help but I think that this code is working on App not in SQL store procedure.
My app alreay created datatable and passed it to SQL store procedure.
I need...
November 4, 2014 at 8:13 am
Thank you. You are right.
Once I move csv file to C of server it works fine.
But, all data with " ". (csv file has text qualifier " ")
How to fix...
October 30, 2014 at 12:54 pm
Thank yo for help.
If I put script like below, does it include all records?
SELECT
*
FROM @test-2 T
WHERE T.TEST_STRING in ('red', 'green') or T.TEST_STRING = ''
OR...
August 22, 2014 at 8:39 am
Thank you for help.
From "20-(MAX([sequence number])%20)" I got an idea.
Finally, I use while loop to complete it.
July 22, 2014 at 12:54 pm
I use
select max(sequence)
to find out max sequence number
July 21, 2014 at 2:48 pm
This a part of one sp in which there are about 20 select statements.
Of all select statement, they need @headerid and @Providerid value.
If using
SELECT HEADERID, PROVIDERID INTO #HEADER
FROM...
May 27, 2014 at 7:50 am
The reason is:
I have user's Excel file including data in each fields (from this views) and were sorted by alphabet.
To find out matched fields between Excel file and views, I...
May 20, 2014 at 10:49 am
Thank you for your point.
Once I change text box form single line to multiple lines mode, it works great without one code.
May 9, 2014 at 8:18 am
I am working with ASP.NET
May 9, 2014 at 8:14 am
For example, user may input text like below.
Welcome to Order application
Your registration is completed
Using code to store above text into SQL column is
'Welcome to Order application' + char(13) + char(10)...
May 9, 2014 at 8:12 am
Viewing 15 posts - 61 through 75 (of 205 total)