theSystem - Part II
Continuing on with his series on building a game in SQL Server, Steve Fibich expands the schema and objects in this article.
2008-04-16
3,108 reads
Continuing on with his series on building a game in SQL Server, Steve Fibich expands the schema and objects in this article.
2008-04-16
3,108 reads
A short review from the perspective of a web hoster on this handy software utility.
2008-04-16
5,463 reads
An interesting script to handle file tasks from within SQL Server.
2008-04-16
5,394 reads
A few notes from a consulting engagement that might get you to think about what to expect from your next contractors.
2008-04-15
6,357 reads
My company is just starting to look at adding functionality to retain historical data for key tables and columns for auditing purposes in many of our SQL Server databases. I have seen some of your recent tips related to triggers (Forcing Trigger Firing Order in SQL Server and Trigger Alternatives in SQL Server - OUTPUT Clause). Based on using triggers or a similar technology, what is the best way to store the historical data?
2008-04-15
5,915 reads
QL 2005 adds two new methods – signing with certificates and impersonation with EXECUTE AS – that can manage cases where the classic method of ownership chaining fails. I explain the two new methods, as well as the old one, and warns you about the pitfalls.
2008-04-15
3,278 reads
The other major database vendors have been making investments by purchasing database related companies, but what has Microsoft done?
2008-04-15
35 reads
The other major database vendors have been making investments by purchasing database related companies, but what has Microsoft done?
2008-04-15
42 reads
The other major database vendors have been making investments by purchasing database related companies, but what has Microsoft done?
2008-04-15
39 reads
Register for the 2008 PASS Summit in November today and save! Use our code when you register and attend our opening night reception.
2008-04-14
1,200 reads
By Steve Jones
In a previous post, I deployed a model to a database using SQL Compare...
By SQLPals
Reality (And Limits) of Instant File Initialization for Transaction Logs in SQL Server 2022 ...
By Steve Jones
Last week I spent a few days in Cambridge, UK for the Redgate Company...
Comments posted to this topic are about the item Adding and Dropping Columns II
Comments posted to this topic are about the item Leveraging DuckDB for OLAP Workloads:...
Comments posted to this topic are about the item More Documentation is Needed
I have this table in my SQL Server 2022 database:
CREATE TABLE [dbo].[CityList] ( [CityNameID] [int] NOT NULL IDENTITY(1, 1), [CityName] [varchar] (30) , [Country2] [char] (3), [stateprovince2] [char] (2), [Country] [char] (3), [stateprovince] [char] ) ON [PRIMARY] GOI decide to drop the stateprovince2 and country2 columns. What code should I use? See possible answers