Viewing 15 posts - 1 through 15 (of 16 total)
Thanks again.
Avoid sarcasm. Don't insist on the last word.
August 7, 2014 at 9:05 am
Thanks for the reply.
This means there is no effect on the queries?
August 7, 2014 at 8:41 am
Thanks for the reply.
All I want to know is whether it will affect the query execution time?
August 7, 2014 at 2:53 am
Indeed ..an insert operation was on.
Thanks
June 26, 2014 at 2:35 am
"c1<---->c2
4<---->2
4<---->3
4<---->4
14<---->12
14<---->13
14<---->14"
How are you deciding when to use 4 and to use 14??
April 7, 2014 at 3:17 am
You can use row number () to create ids for all the rows and then based on any column order you can delete 1000 rows:
DELETE FROM
(SELECT...
March 31, 2014 at 1:11 am
Partitions would be helpful.Then you could also restrict conditions in where clause
March 31, 2014 at 1:05 am
alter table table_name
add sr_no bigint identity(1,1)
Mark as useful if it...
March 28, 2014 at 4:52 am
Assuming that earlier loaded data has duplicates which is fine and now I want to upload only unique
data.Any query would help.Thanks!1
February 26, 2014 at 1:50 am
Assuming that earlier loaded data has duplicates which is fine and now I want to upload only duplicate data.Any query would help.Thanks!1
February 26, 2014 at 1:49 am
Here the collate type that you have chosen is case sensitive and accent sensitive.
The sorting is performed on two levels.
1)b and B will be treated differently.As in your example there...
February 24, 2014 at 5:04 am
Alter the precision of the column
ALTER TABLE Testing ALTER COLUMN Testcolumn decimal(16,1)
February 24, 2014 at 4:16 am
Viewing 15 posts - 1 through 15 (of 16 total)