2014-08-20
1,991 reads
2014-08-20
1,991 reads
2014-03-19
1,826 reads
2013-10-25
2,049 reads
2013-10-03
2,359 reads
How to change the port number for connections to SQL Server.
2012-03-01
13,580 reads
2012-01-18
2,258 reads
This article will show you how to determine which network port that SQL Server is listening on for connections
2011-09-08
10,292 reads
There are times when you need to use different network ports to communicate between two servers running database mirroring. Learn how to change the default ports.
2011-03-14
10,434 reads
By Brian Kelley
I will be back in Seattle this year attending the 2025 PASS Data Community...
By Steve Jones
Another of our values is this: Motivation isn’t about carrots and sticks. Constant oversight...
By Steve Jones
Today is my last day of work for six weeks. I start my sabbatical...
Comments posted to this topic are about the item Three Times a Day
Given a record mapping table: Id Initial Updated 1 1 2 2 3 4...
Hi i recently exported a number of "to be purged resultsets " to .tsv's. ...
In my SQL Server 2022 database, I run this code:
ALTER TABLE dbo.OrderHeader ADD ModifiedStamp DATETIME CONSTRAINT df_Created_Getdate DEFAULT GETDATE() GOI decide I need to add auditing to another table and run this:
ALTER TABLE dbo.Tracker ADD Created DATETIME CONSTRAINT df_Created_Getdate DEFAULT GETDATE() GOWhat happens with these statements? See possible answers