Viewing 15 posts - 16 through 30 (of 36 total)
Agreed. I believe that the change tracking functionality is designed primarily to act at a lower level of granularity, so that individual row changes to a table can be audited,...
May 23, 2011 at 5:09 am
Hi jongy,
I'm afraid I am not very familiar with change tracking.
I also skim read the article you listed, but can see no mention of the CHECKSUM functions discussed in this...
May 23, 2011 at 4:55 am
Working now on my iPhone, but it seems you must include the trailing slash (/) at the end of the URL to avoid a 404 error:
http://www.sqlservercentral.com/mobile/qotd%5Bb%5D/%5B/b%5D
Regards.
January 7, 2011 at 2:57 am
Yes 404 from iPhone also.
January 5, 2011 at 2:44 am
Shouldn't the line:
"The world of software development will change radically once somebody starts building applications in a drastically more consistent way"
..instead read:
"The world of software development will change radically once...
October 6, 2010 at 6:35 am
Excellent and very throught provoking series.
Do we think the mix up of RULEOFF/RULEON in SQL 2005 was a deliberate ploy or purely accidental by the MS developers?
😉
September 16, 2010 at 8:45 am
Thanks Steve. (Doh!) 😉
July 14, 2010 at 4:53 am
This works. (can probably be simplified)
;WITH WordsFromPhrases(Textid, WordPos, Word, NewPhrase)
AS
(
SELECT TextId, 1 AS 'WordPos', SUBSTRING(Data, 1, CHARINDEX(' ', Data, 1)) AS 'Word',
REPLACE(Data, SUBSTRING(Data, 1, CHARINDEX(' ', Data, 1)), '') +...
July 13, 2010 at 4:29 am
Revised XPath query that would work for above namespace is:
SELECT @x.value(' declare namespace NS="http://www.mycomp.com/lbg.paris.load.bulkdealcomponentinsert.xsd"; /NS:BulkDealComponentInsert[1]/NS:Deal[1]/NS:OrgCode[1]', 'varchar(100)') AS OrgCode
Hope this helps,
Cheers,
June 30, 2010 at 8:46 am
One potential problem and improvement that could be made to the function.
Support for namespaces?
For example:
DECLARE @x XML
SELECT @x = '
<BulkDealComponentInsert xmlns="http://www.mycomp.com/lbg.paris.load.bulkdealcomponentinsert.xsd" RequestId="150134" BatchNum="25">
<Deal DealCode="2862868LN|SWAPTION" DealVersion="10">
...
June 30, 2010 at 8:36 am
Sebastian,
This is very powerful stuff!
Very nice to be able to automatically produce XQuery paths statements.
Thanks,
June 30, 2010 at 8:30 am
Excellent article. Well written with clear examples.
June 21, 2010 at 3:31 am
Jesus,
I'm not completely sure what you are asking.
Could you elaborate please?
Many thanks,
Lawrence
June 16, 2010 at 2:09 pm
JJ B,
Many thanks for your post and kind comments.
It's certainly been a valuable process for me to discover the performance limitations of ROW_NUMBER(), and be able to demonstrate that they...
June 16, 2010 at 11:03 am
All,
With Henrik's input, I've been able to deduce that the following Index improves the "Latest Edition" query considerably:
CREATE UNIQUE INDEX ix_Books_Test1 ON dbo.Books(BookTitle, BookEdition DESC) INCLUDE (BookPublishDate, BookAuthor)
This is an...
June 16, 2010 at 6:47 am
Viewing 15 posts - 16 through 30 (of 36 total)