Viewing 10 posts - 1 through 10 (of 10 total)
Hello,
Thanks for great article. I have one question.
Example "CHECKSUM may fail to detect a change" works diffrent on my SQL Server. It returns:
Before Change | After Change
-546463845 | 991901348
Is it...
February 12, 2013 at 2:59 am
He everyone,
I have read your discoussion about dropping articles and snapshot creation and still have a few questions;
1. Is this true that after drop an article (sp_dropsubscription + sp_droparticle) I...
September 11, 2011 at 4:19 am
I have just did the following:
1/ scripted all tables (by SSMS Tasks->Script) from my orgin DB
2/ execute Tool_ScriptDiagram2005 in my orgin DB
3/ created new test DB
4/ in test DB: refresh...
July 8, 2010 at 6:12 am
Yes, I've transferred one of my diagrams to another SQL Instance.
July 8, 2010 at 5:53 am
July 7, 2010 at 8:08 am
Experimental reason 🙂 I want to measure how much slower is XML type than T-SQL, and by the way learn XQuery 🙂
April 20, 2010 at 12:32 pm
Thanks for yuor answer.
Unfortunatelly it isn't exactly what I want, because I want correctly sorted names- BY StartDate.
Look at the comparison:
SELECT tab.c.query('
for $i in (EmploymentHistory/Position)
order by fn:string($i/StartDate) descending
return (fn:data($i/@Name))')
FROM @xml.nodes('/root')...
April 20, 2010 at 9:31 am
In my code I use sorting in XQuery, and this is part of much more complicated example, so I still want to limit elements in XQuery 🙂
This is the schema...
April 20, 2010 at 9:03 am
Pulivarthi Sasidhar Chowdary (4/20/2010)
Use Top 3 in SELECT statement
It doesn't works- I want to limit XQuery results; not T-SQL
April 20, 2010 at 8:20 am
Viewing 10 posts - 1 through 10 (of 10 total)