Viewing 15 posts - 3,106 through 3,120 (of 7,609 total)
set @counter = @counter + 1 /* increment counter */ /* I see this or slight variations of it all the time */
--------------------...
/* not quite...
October 12, 2018 at 1:51 pm
October 11, 2018 at 9:13 am
The easiest and cleanest way to do this would be to create stored proc in the master db, start the name with "sp_", mark it as a system object, and...
October 10, 2018 at 3:56 pm
October 10, 2018 at 2:19 pm
October 10, 2018 at 12:56 pm
SELECT tn.*
FROM (
SELECT NUMBER
FROM dbo.table_name
GROUP BY NUMBER
HAVING COUNT(*) > 1
) AS NUMBER_DUPS
INNER...
October 10, 2018 at 11:13 am
In terms of potential lost performance and wasted resources, this is probably the single dumbest thing:
CREATE TABLE dbo.every_table_created
(
id int IDENTITY(1, 1)...
October 10, 2018 at 10:47 am
Perhaps a 3rd option. Rather than pulling the data from all instances, have each instance gather that info on itself and push it to a central location.
October 9, 2018 at 3:32 pm
| Vardecimal storage format | Use of vardecimal storage format was encountered. Use data compression... |
October 9, 2018 at 2:41 pm
October 9, 2018 at 10:42 am
October 9, 2018 at 10:19 am
October 9, 2018 at 9:27 am
Viewing 15 posts - 3,106 through 3,120 (of 7,609 total)