Viewing 15 posts - 676 through 690 (of 716 total)
This was removed by the editor as SPAM
December 2, 2020 at 11:28 pm
How much total memory does each machine have? What are the minimum & maximum memory settings in SQL Server (right-click the server in SSMS & select Memory)?
Do servers only have...
November 24, 2020 at 3:20 pm
Bare metal or VMs?
Network specs?
Where is the file? Local hard disk/SAN/other? Are the drives configured identically? Have you benchmarked/ & compared performance for the drives from which you're pulling the...
November 24, 2020 at 2:10 pm
"If it's so bad, Microsoft will improve on it, just as Microsoft fixed the notorious message 8152, "String or binary data would be truncated" for SQL 2016 SP2(+CU?) or later."
So...
November 18, 2020 at 2:04 pm
I used the below, which calls 1 million times (required catch block to be executable), and couldn't get a null (I assume that's what you meant by not always returning...
November 16, 2020 at 2:36 pm
Previous Generation Instances lists i2 and r3 instances.
November 11, 2020 at 2:03 pm
This should generate alter statements without using a cursor.
You will probably need to filter out system tables. Print to see the results before executing. If you can do it reliably in...
November 10, 2020 at 11:06 pm
Do you mean DT_BYTES (byte array), or byte type (single-byte equivalent of a tinyint)?
Eight bytes definitely won't fit in a one-byte type (Byte).
Do a select using CAST(rowversion AS BIGINT)...
November 9, 2020 at 5:48 pm
This was removed by the editor as SPAM
October 27, 2020 at 9:26 pm
https://github.com/GuerrillaAnalytics/similarity is an updated version of the SimMetrics CLR assembly I've used for years.
October 27, 2020 at 8:18 pm
You got feedback (and a little sass) from some very experienced and talented database experts who have a lot of wisdom to impart. But occasionally the experts vent a little...
October 27, 2020 at 8:12 pm
AT TIME ZONE returns datetimeoffset. Take off the cast and it will show you that it is treating it as UTC.
"When inputdate is provided without offset information, the function applies...
October 22, 2020 at 7:20 pm
You need two other "tables":
October 15, 2020 at 1:33 pm
It doesn't just happen -- Somebody (e.g., editing table in SSMS or applying changes via a compare tool) or some process (e.g., SQL Agent job) is doing it.
You can track...
October 8, 2020 at 7:44 pm
Check the auto-close property on the relevant databases -- it defaults to on with SQL Server Express.
SELECT name,is_auto_close_on FROM sys.databases
WHERE is_auto_close_on = 1 AND name =...
October 2, 2020 at 6:39 pm
Viewing 15 posts - 676 through 690 (of 716 total)