Viewing 15 posts - 61 through 75 (of 369 total)
SELECT
tab.col.value('@id','varchar(5000)') AS 'BookID',
...
Attributes on a node are identified by the "@" character.
Suggestion:
Don't use the double slash (//) (e.g. "//book") to locate the nodes as this implies that you are...
December 21, 2009 at 12:01 pm
KEDIT http://www.kedit.com/
Can handle lots of data and is fast! Fully customizable interface (including line numbers) with built-in macro language KEXX (built on REXX http://en.wikipedia.org/wiki/Rexx)
December 21, 2009 at 9:12 am
Our environment is identical. I.e., everything is checked in to our source code control system (Perforce) as separate files.
The attached DOS script (BuildSchema.cmd) will do the job. Yes,...
December 11, 2009 at 12:38 pm
Unlike Oracle, SQL Server does not support a UTF-8 collation (character set). Since UTF-8 is, in essence, a binary stream, it will have to be converted to the Unicode...
December 10, 2009 at 11:24 am
Re: A clustered index physically rearanges data on disk.
Technically, the use of the word "disk" is wrong. It rearranges data within the (SQL Server) pages and extents. Where...
December 10, 2009 at 9:23 am
Charles Kincaid (12/9/2009)
Here is the secret, at least to thinking about this. The CTE generates a very temporary table. It only lives for the length of the single...
December 9, 2009 at 9:45 am
Enabling Full-Text by itself doesn't impact performance. Note that all SQL Server 2005 database have full-text enabled by default.
If you don't have any columns that have a full-text index...
December 7, 2009 at 8:19 am
It is a valid data model. I have designed and implemented it where the business case required it. I've also used it to prevent certain updates and/or deletions....
November 17, 2009 at 10:14 am
First off, you should be using a Source Code Control system.
Then you need to create an "Upgrade Schema" script that can be run in batch mode against your QA databases...
November 13, 2009 at 8:21 am
Note that SQL Server 2005 Reporting Services has a bad defect related to linked reports. If the report is a linked report, the page size properties of the master...
November 9, 2009 at 9:24 am
Since this is SQL Server 2005, you should be using SQLCMD vs. OSQL. OSQL is obsolete
November 6, 2009 at 3:33 pm
Viewing 15 posts - 61 through 75 (of 369 total)