Thread
:
T-SQL script for tran log with - in database name
View Single Post
#
2
(
permalink
)
02-29-2008, 06:13 AM
Simon Hayes
Posts: n/a
Re: T-SQL script for tran log with - in database name
BACKUP LOG [data-base] WITH NO_LOG
See "Delimited Identifiers", "Using Identifiers" and QUOTENAME() in
Books Online. It's usually best to stick to letters and digits only for
identifiers.
Simon
Simon Hayes