Viewing 15 posts - 121 through 135 (of 812 total)
September 8, 2017 at 12:48 am
August 30, 2017 at 2:08 am
July 17, 2017 at 3:28 am
July 12, 2017 at 1:01 am
Confused question!
If the author intended the primary key is clustered, this apply (from BOL):
When a constraint that created a clustered index is deleted, the data rows that...
July 11, 2017 at 1:56 am
Here a cursor free version:DECLARE @TableName SYSNAME = 'MyTable',@Schema SYSNAME = 'dbo', @sql NVARCHAR(MAX) = '', @max-2 INT
,@UnionALL NVARCHAR(11)= '';
SELECT...
July 7, 2017 at 1:32 am
June 21, 2017 at 6:43 am
Assuming we use DBCC SQLPERF with the parameter LOGSPACE the explanation is wrong.
"Check the amount of space available in a transaction log file."
BOL says the opposite "amount...
June 8, 2017 at 8:46 am
June 8, 2017 at 12:59 am
About the "tempdb", here says that it is configured at the smallest possible size.
https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/start-sql-server-with-minimal-configuration
April 13, 2017 at 2:19 am
Correct and incomplete answer: "This lets me know if the Order table is in the buffer pool", it always returns false.
Ambiguous answer: "This tells me nothing as tables cannot...
March 23, 2017 at 2:38 am
The best method is the following:SELECT COUNT(*) FROM sys.triggers
WHERE parent_id = OBJECT_ID('TriggerTest')
March 2, 2017 at 9:21 am
Viewing 15 posts - 121 through 135 (of 812 total)