Pride and Security
When an employee has pride in their company, they tend to do a better job, and Steve Jones says that extends to security.
2011-12-20
112 reads
When an employee has pride in their company, they tend to do a better job, and Steve Jones says that extends to security.
2011-12-20
112 reads
The basis for all the encryption in SQL Server is the Service Master Key, which is the top of the...
2011-12-19
4,470 reads
SQLServerCentral will be hosting a track at the 2012 spring SQL Server Connections conference and we hope to see you there.
2011-12-19
51 reads
It’s time for T-SQL Tuesday again, and this time Allen White (@SQLRunr | blog) is asking for your tricks. If you...
2011-12-16 (first published: 2011-12-13)
2,746 reads
2011-12-16
2,359 reads
Do you connect to your work network with your smartphone? If so, you should be careful and ensure you are taking precautions to prevent any security issues.
2011-12-15
200 reads
It’s easy. First you click here:
Then you find the SQL Server 2008 or 2008 R2 program group
Open those and then...
2011-12-15
21,809 reads
2011-12-15
1,957 reads
If you would like to tackle an interesting project at work or find yourself something new to do next year, read this idea from Steve Jones.
2011-12-14
378 reads
Instagram has a complex architecture for it's technology infrastructure. The people that work there have to be jacks of all trades. Is that the type of environment you'd like to work in?
2011-12-13
149 reads
By gbargsley
We’ve all been there. Someone walks up and asks, “Is SQL Server having issues?”...
By Chris Yates
In the beginning, there was OLTP – Online Transaction Processing. Fast, reliable, and ruthlessly...
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
Hello SQL Server 2022 16.0.4212.1 running on a Windows Server 2025 Std,V 24H2, SO...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers