Viewing 15 posts - 1,651 through 1,665 (of 6,036 total)
ScottPletcher (2/9/2016)
February 9, 2016 at 2:27 pm
sqlfriends (2/8/2016)
So we plan to create below tables :Entity : EntityID -- only column and it is identity column -- like a global identifier
That would be a great...
February 9, 2016 at 2:24 pm
ScottPletcher (2/9/2016)
February 9, 2016 at 2:12 pm
Indianrock (2/9/2016)
RedGate's smart rename function came up with this...
February 9, 2016 at 1:45 pm
Indianrock (2/9/2016)
February 9, 2016 at 1:45 pm
Select @day = max(day1)
FROM table1
WHERE date1 = ISNULL( @date, (SELECT max(date1) from table1))
February 9, 2016 at 6:42 am
Igor Micev (2/9/2016)
Increasing capacity of a column in table means a split on every page occupied by the table.
Which means effectively doubling the space needed to accommodate the table.
With corresponding...
February 9, 2016 at 6:34 am
I must add - after applying those tricks any existing code relying on the current RowNumber becomes irrelevant and needs to be revised.
February 8, 2016 at 6:25 pm
Hi Indianrock,
I see you liked the horizons opening in front of you. :hehe:
How far numbers of rows for those odd files go over the limit of 32768 the ?
If you...
February 8, 2016 at 6:20 pm
Igor Micev (2/5/2016)
The advise from ScottPletcher is just fine. Changing from smallint to int...
February 8, 2016 at 3:46 pm
Hugo Kornelis (1/21/2016)
Bill Talada (1/21/2016)
Without uniqueness, sql is forced to use rowids to find rows on a page.
Not true. Without a clustered index (i.e., in a heap), SQL Server needs...
February 4, 2016 at 8:22 pm
Luis Cazares (2/4/2016)
SELECT *
FROM #Source s
JOIN #result r ON ' ' + r.column_result + ' ' LIKE '%...
February 4, 2016 at 1:53 pm
Ed Wagner (2/1/2016)
February 3, 2016 at 8:19 pm
I don't think you can change a data type on a column.
It may look like changing a data type from you visual tool (SSMS, I guess), but what is actually...
February 3, 2016 at 8:11 pm
ScottPletcher (2/2/2016)
SELECT team,sum(ats) as W,sum(atsloss) as L,sum(O) as Ov, sum(U) as Un,
...
February 3, 2016 at 7:50 pm
Viewing 15 posts - 1,651 through 1,665 (of 6,036 total)