The Cost of Function Use In A Where Clause
Discusses Index Selection impact when functions are wrapped around WHERE clause filtering columns
2008-02-28
15,983 reads
Discusses Index Selection impact when functions are wrapped around WHERE clause filtering columns
2008-02-28
15,983 reads
This next post on Full Text search from MVP Simon Sabin examines how you can examine the details of what your indexes contain.
2008-02-28
1,620 reads
How important is disk encryption to you? Do you think about all those replicated or copied databases on laptops? Let us know.
2008-02-28
34 reads
How important is disk encryption to you? Do you think about all those replicated or copied databases on laptops? Let us know.
2008-02-28
36 reads
Part 2 of this article illustrates how to enable Change Data Capture on a database, on a table and how SQL Server tracks the data changes of the CDC enabled table.
2008-02-28
2,718 reads
This is the seventh article in a continuing series, and this installment discusses the tactical layer of the Data Governance Framework.
2008-02-28
1,423 reads
Longtime author Paul Ibison brings us a short look at a common problem in Integration Services: your source has no column names.
2008-02-27
7,385 reads
One of the more mysterious features of SQL Server is isolation levels. Whenever a statement is executed, or a data modification is made, it runs under the influence of an isolation level. Traditionally, SQL Server has supported four isolation levels. In SQL Server 2005, two new isolation levels are introduced.
2008-02-27 (first published: 2007-03-05)
3,652 reads
In this screencast, we look at Table Valued Parameters from both the server side and client side perspectives.
2008-02-27
2,499 reads
Occasionally someone will ask for my help with a query and say that both a right outer join and a left outer join was tried, and still the expected results were not achieved. That made me realize that some developers do not completely understand outer joins and that an article explaining how to use them might help.
2008-02-27
7,220 reads
By Steve Jones
Fear is fueled by a lack of imagination. The antidote to fear is not...
The slidedeck and the SQL scripts for the session Indexing for Dummies can be...
By Chris Yates
Change is not a disruption in technology; it is the rhythm. New frameworks appear,...
Comments posted to this topic are about the item Building AI Governance and Policies-...
Why is sql doing a full scan VS seeking on the index? I've included...
We have a report that has multiple tables that list the top 15 performers...
The DBCC CHECKIDENT command is used when working with identity values. I have a table with 10 rows in it that looks like this:
TravelLogID CityID StartDate EndDate 1 1 2025-01-11 2025-01-16 2 2 2025-01-11 2025-01-16 3 3 2025-01-11 2025-01-16 4 4 2025-01-11 2025-01-16 5 5 2025-01-11 2025-01-16 6 6 2025-01-11 2025-01-16 7 7 2025-01-11 2025-01-16 8 8 2025-01-11 2025-01-16 9 9 2025-01-11 2025-01-16 10 10 2025-01-11 2025-01-16The docs for DBCC CHECKIDENT say this if I run with only the table parameter: "If the current identity value for a table is less than the maximum identity value stored in the identity column, it is reset using the maximum value in the identity column. " I run this code:
DELETE dbo.TravelLog WHERE TravelLogID >= 9 GO DBCC CHECKIDENT(TravelLog, RESEED) GO INSERT dbo.TravelLog ( CityID, StartDate, EndDate ) VALUES (4, '2025-09-14', '2025-09-17') GOWhat is the identity value for the new row inserted by the insert statement above? See possible answers