Connecting to SQL Server with ASP
This article shows you the basics of connecting to SQL Server in Active Server Pages.
This article shows you the basics of connecting to SQL Server in Active Server Pages.
How can you maintain a stable environment? Keeping track of all changes is the time-tested and proven technique. Read about it here.
Got a plan for moving your data to the new server? Try this one! Andy Warren offers step by step instructions on how to move your data without doing a backup/restore or using detach and attach.
The eighth part of Steve Jones's series on having SQL Server automatically report information to a DBA.
This week, Brian Knight reviews the book Gurus Guide to Transact SQL.
This article shows you in a step-by-step manner how to restore the master database.
The seventh part of Steve Jones's series on having SQL Server automatically report information to a DBA.
I ran into a dilemma when I was told that I should not allow potential competitors to view my JavaScript comments. If they want to figure the code out; make them work for it.
The sixth part of Steve Jones's series on having SQL Server automatically report information to a DBA.
This humorous form was originally desgined for Network Admins, but it works for DBAs as well.
The post Lukáš Karlovský: I got the green light from management and built Fabric...
By Steve Jones
I had mentioned some new T-SQL functions for SQL Server 2022 and a commenter...
This post comes off the back of my last, where I looked at issues...
Comments posted to this topic are about the item Subqueries II
Comments posted to this topic are about the item Distributed Monoliths
Comments posted to this topic are about the item JSON in PostgreSQL
What is wrong (if anything) with this code?
SELECT * FROM Sales.SalesOrderHeader AS soh WHERE customerid IN (SELECT soh.CustomerID FROM Sales.Customer AS c WHERE soh.CurrencyRateID = 1 ORDER BY c.ModifiedDate)See possible answers