Viewing 15 posts - 1,276 through 1,290 (of 2,038 total)
Use the tags [ code="xml" ] and [ /code ] without the spaces 😉
declare @appro_xml xml ;
set @appro_xml='
1020
210
11
12
14
15
'
select
x.col.value('SolicitationID[1]','INT')AS request_id ,
x.col.value('DeclineReasonCode[1]','varchar(500)')AS DeclineReasonCode
FROM @appro_xml.nodes('//ScoreAndDataRetrievalRequest') x(col)
--CROSS APPLY col.nodes('DeclineReasonCode')...
April 23, 2009 at 7:44 am
Hi
I just tried your script. Since I don't specify either "-T" or "-U user -P pwd" I also get an error. Try this to connect to a server by windows...
April 23, 2009 at 7:22 am
Why do you need the cursor? Try to use the Sql2k5 XML functions:
DECLARE @source TABLE (Id INT, Data XML)
INSERT INTO @source
...
April 23, 2009 at 6:40 am
You don't specify any authentication information in your command line string.
Greets
Flo
April 23, 2009 at 6:31 am
Derek Dongray (4/23/2009)
April 23, 2009 at 5:57 am
Hi Bob
Bob Hovious (4/22/2009)
April 23, 2009 at 5:44 am
Hi
Try this:
DECLARE @sql NVARCHAR(MAX)
SELECT @sql = ISNULL(@sql, '') + 'USE ' + name + '
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
SET @start_dt = ''2008-10-01 00:00:00.000''
SET @end_dt = ''2008-12-31...
April 23, 2009 at 3:35 am
doran_doran (4/22/2009)
April 22, 2009 at 3:38 pm
Hi Doran
As first, I took your attached SQL Scripts and just surround with [ code ] and [ /code ] (no spaces) for better reading for other people ;-).
CREATE TABLE...
April 22, 2009 at 3:35 pm
Lynn Pettis (4/22/2009)
Is there a specific post where I can find the SQL to setup a test suite?
Hi Lynn
Not containing all the different functions. If you want, I can try...
April 22, 2009 at 3:09 pm
RBarryYoung (4/22/2009)
!!!Those are some freakin' incredible numbers!
Hi Barry!
Yeah! Looks like the second youth of "Tally" 🙂
April 22, 2009 at 3:04 pm
Sure you are right, a Tally should have a fillfactor of 100. Forgive me for my tests ;-).
Your test results on your laptop look quiet strange to me (maybe time...
April 22, 2009 at 3:00 pm
Hi Gus (hope I am allowed to call you Gus)
I just tried again and I think I figured out the problem. It depends on the C# code. As long as...
April 22, 2009 at 2:50 pm
Matt Miller (4/22/2009)
April 22, 2009 at 2:33 pm
Viewing 15 posts - 1,276 through 1,290 (of 2,038 total)