Other News

Community

Querying a Database Snapshot

(Sanjay Mishra, Michael Thomassy and Peter Byrne) Database Snapshots (http://msdn2.microsoft.com/en-us/library/ms175158.aspx) in SQL Server 2005 Enterprise Edition allow a read-only point-in-time view of data. Recently we encountered an interesting scenario with a customer implementation. The custom

Community

FIX: Error message when you use a Volume Shadow Copy Service (VSS) writer to back up a snapshot in SQL Server 2005 or in SQL Server 2000: ‘Attempt to release mutex not owned by caller’

When you use a Volume Shadow Copy Service (VSS) writer to back up a snapshot in Microsoft SQL Server 2005 or in SQL Server 2000, an event that resembles the following may be logged in the Application log: Event Source: SQLVDI Event Category: None Event ID: 1 Date: Time: User

Community

sql*plus pagesize explained

(Laurent Schneider) SQL*Plus is a not only the command-line interface to the database server, it is also a featured reporting tool with paging capabilities. The pagesize is the number of rows of one page. The default is 14 and the maximum is 50000. One of the common property of the page is the heade

Community

Sorting

(Jonathan Lewis) This queston came up on the Oracle newsgroup a few days ago: I have a table (call it policy) with three columns a, b and c. The table has two rows, with column c having value zero for both rows. I run the following query select * from policy order by c;