Viewing 15 posts - 136 through 150 (of 219 total)
Paul White NZ (4/6/2010)
The primary purpose of TRUNCATE TABLE is to delete records - clearly a DML.
Not so clear to Oracle guys 🙂
http://download.oracle.com/docs/cd/E11882_01/server.112/e10592/statements_1001.htm – TRUNCATE is in the DDL list.
April 6, 2010 at 1:09 pm
By the way, which event took place on 1776-01-01?
April 2, 2010 at 6:24 am
Why the question specifies the slash datetime format (yyyy/mm/dd) while all the answers are in the dash datetime format (yyyy-mm-dd)? This is completely misleading and incorrect! 😛
April 2, 2010 at 6:14 am
Paul White NZ (3/30/2010)
Some data manipulation language (DML) operations, such as table truncation, use Sch-M locks to prevent access to affected tables by concurrent operations.
So, table truncation is explicitly defined...
March 31, 2010 at 12:53 am
richard.maw (3/30/2010)
Can anyone give an account of why the semantics of isnull and coalesce (with two args) is different?
Here is a nice article about this: http://blogs.msdn.com/sqltips/archive/2008/06/26/differences-between-isnull-and-coalesce.aspx
COALESCE basically translates to CASE...
March 31, 2010 at 12:02 am
Hugo Kornelis (3/25/2010)
' ' is converted to the value 0 (run [font="Courier New"]SELECT CAST(' ' AS int);[/font] if you don't believe me).
This is very interesting because [font="Courier New"]ISNUMERIC(' ')[/font] returns...
March 25, 2010 at 3:23 am
Carlo Romagnano (3/23/2010)
Thank you! I love undocumented.
I'm afraid you'll be disappointed in this function since it became documented (and obsolete at the same time) in SQL Server 2008 🙂 http://msdn.microsoft.com/en-us/library/dd822791.aspx
March 23, 2010 at 2:09 am
Ric Sierra (3/22/2010)
this undocumented function is available since SQLServer 7
PWDENCRYPT is a hash function, which means it's a one-way function. Once hashed, data cannot be restored. With cell-level encryption, data...
March 23, 2010 at 1:57 am
Tom.Thomson (3/19/2010)
vk-kirov (3/16/2010)
Hugo Kornelis (3/16/2010)
March 20, 2010 at 4:09 am
I think Microsoft is also indirectly responsible for the subject of discussion, because usually answers and explanations include quotes from BOL and links to BOL. If there are any errors...
March 19, 2010 at 12:17 am
CirquedeSQLeil (3/16/2010)
I am still left wondering how to do it?
File - New - Policy
Oops... it looks like I revealed someone's secret :w00t:
March 17, 2010 at 9:26 am
ChrisMoix-87856 (3/16/2010)
IIRC, SQL 7.0 the backup contained what was "in" the database at the start of the backup.
You are mistaken. Here is a quote from BOL 7.0:
Creating and Restoring a...
March 16, 2010 at 3:49 pm
Hugo Kornelis (3/16/2010)
March 16, 2010 at 2:22 pm
Mark D Powell (3/16/2010)
From the manual:
The full recovery model uses log backups to prevent data loss in the broadest range of failure scenarios, and...
March 16, 2010 at 1:38 pm
Viewing 15 posts - 136 through 150 (of 219 total)