Cell Phone Horror Stories
These are some stories that show the downside of everyone having cell phones.
These are some stories that show the downside of everyone having cell phones.
The Index Wizard is a handy tool shipped as part of the SQL 7 Profiler that can analyze a set of SQL queries and suggest index changes that could improve their performance.
Global variables are a little known solution in Data Transformation Services (DTS). Often packages become "stale", where you must develop a package for each client.
The CASE statement is a very flexible tool. Here are just a few of the tricks you can work with it.
In this article, we get you started with the core knowledge you'll need to transform your data using DTS.
If you use performance log data and need to conduct time-sensitive analysis, watch out for this little feature in Windows 2000.
Replicating continuously minimizes latency, but at a cost. If you're replicated a lot of databases, read this article for some ideas about how to trade latency for overhead by runnig your agents in non-continous mode.
There is a web site devoted to humorous tales from the tech
support field. Check out these samples and submit your own.
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
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