Viewing 15 posts - 4,621 through 4,635 (of 5,504 total)
Additionally to the test data it would be nice to how you'd provide those multiple reportids (e.g. comma separated, table, xml aso).
Basically, being a little more specific what you mean...
January 4, 2010 at 6:53 am
Justin James (1/4/2010)
mister.magoo (12/30/2009)
January 4, 2010 at 6:43 am
The namespaces you need to declare are those used within your xml file.
In the given case it would be "ns:" and "ax29:".
The DEFAULT clause within the namespace declaration is the...
January 4, 2010 at 5:52 am
Your xml should include the namespace declaration in the first row. Something like
<ns:getPersonnel xmlns:ns="http://www.w3.org/2001/XMLSchema-instance" xmlns:ax29="uri">
Then you could query your data as follows:
;WITH xmlnamespaces(
DEFAULT 'uri' ,
'http://www.w3.org/2001/XMLSchema-instance' AS ns,
'uri' AS ax29)
SELECT...
January 4, 2010 at 4:40 am
please give us some sample data to play with in a ready to use format. See the first link in my signature for how to do it to get the...
January 4, 2010 at 4:18 am
select * from wce_history where recordedtime >= dateadd(mm,-2,getdate())
dateadd is used to calculate date offsets based on a given date. Getdate() is current date, current time. Please see BOL (Books Online,...
January 4, 2010 at 4:15 am
duplicate post.
Please continue here
January 4, 2010 at 4:12 am
venktsrinivas.gv (1/1/2010)
Pls refer any books with good authour
Is it possible that you're confused by the "hint "Books Online"?
If so: Books Online (aka BOL) is the help system usually installed together...
January 3, 2010 at 9:28 am
The reason why the code in your first sample will not give you the expected results is your ELSE condition:
since your ELSE condition is of data type DECIMAL, SQL...
January 2, 2010 at 4:36 am
Jeff Moden (1/1/2010)
January 1, 2010 at 7:15 pm
Anamika (12/30/2009)
December 31, 2009 at 5:29 am
Bhuvnesh (12/31/2009)
but why count(*) will be treated differently from count(id1) though both contains same records?
Not true.
Count(*) will count all records in the table (Basically counting the internal id that...
December 31, 2009 at 4:57 am
lobbymuncher (12/31/2009)
...You're on European time? I'll try not to clash with you this morning. I'm bored and it's too early for beer!
Cheers
ChrisM@home
Yep, I live in Germany. Right now it's...
December 31, 2009 at 4:33 am
@Gus:
Great everything turned into something "different" before the year ends. Let's hope that "different" = "better"!!
All the best for you and your family!
@Lynn:
Glad to hear that both of your...
December 31, 2009 at 4:27 am
lobbymuncher (12/31/2009)
December 31, 2009 at 4:00 am
Viewing 15 posts - 4,621 through 4,635 (of 5,504 total)