Viewing 15 posts - 736 through 750 (of 5,502 total)
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
I just can repeat what I stated before:
Please read and follow the advice given in the first link in my signature and post ready to use sample data together with...
December 31, 2011 at 1:07 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
Please read and follow the advice given in the first link in my signature and post ready to use sample data together with your expected result and what you've tried...
December 30, 2011 at 10:57 am
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
Are those questions part of an interview?
December 30, 2011 at 2:44 am
logicinside22 (12/29/2011)
I tired with this option but i am getting blank excel file in mail.
Does the query return any result at all when executed using the same query window as...
December 29, 2011 at 2:34 pm
Viewing 15 posts - 736 through 750 (of 5,502 total)