Viewing 15 posts - 736 through 750 (of 5,504 total)
What does the other xml file look like and what value/attribute do you need to extract from it?
January 2, 2012 at 6:18 am
Here's a solution based on Jacobs XML Lab.
It need to be noticeed that this will modify only one attribute. If you need to modify more/all attributes and the xml structure...
January 2, 2012 at 3:07 am
I'd say it's because of the Distinct operator in your query. Therewith you're using an aggregation similar to
GROUP BY D.Col1, D.Col2, D.Col3, D.Col4, D.Col5, D.Co6, D.Col7,
Agt.Col1, Agt.Col2, AH.Col1,...
January 1, 2012 at 9:07 am
and
Prosperous New Year!!!
🙂+1
December 31, 2011 at 10:32 am
benjamin.reyes (12/30/2011)
LutzM (12/30/2011)
Just make sure to charge them for the support (assuming your company had to pay for the product, too...)
I wish it worked that way. :hehe:
Though I'll settle for...
December 30, 2011 at 2:45 pm
benjamin.reyes (12/30/2011)
We've had pretty good success in partnering with our vendors in sharing performance data such...
December 30, 2011 at 1:46 pm
WangcChiKaBastar (12/30/2011)
Its actually an iterative call to a Stored Proc from .Net
and the proc runs super fast on SSMS. every call it fetches 2 to 3 rows and
returns data to...
December 30, 2011 at 10:37 am
The data in the file will be in the same order as specified in the original query. If there's no ORDER BY in the SELECT statement then you can't expect...
December 30, 2011 at 10:31 am
It's not really a duplicate post...
In this post the account number for "00011 0055500ABC" should be 0055500 whereas in the post Gianluca referenced the expected result is 0055500AB...
@mario:
I strongly recommend...
December 30, 2011 at 5:10 am
Thanx, Dev.
At least I didn't waste too much time on it...
December 30, 2011 at 5:01 am
Didn't see your latest reply, I'm sorry...
What is the logic to get "P" based on "0047225P1"? Shouldn't it be "1"?
December 30, 2011 at 4:33 am
Based on what you provided so far, this could be one solution:
SELECT '004722' AS [serial number] , 'P' AS letter
UNION ALL
SELECT '0055500AB' AS [serial number] , 'C' AS...
December 30, 2011 at 4:30 am
You don't need a function to return the values you're looking for:
In your sproc simply use the select statement:
SELECT
@UserFullName = chrFullName,
@UserEmail = chrEmail
FROM[User]
WHERE intUserID...
December 30, 2011 at 4:17 am
Viewing 15 posts - 736 through 750 (of 5,504 total)