Viewing 15 posts - 6,016 through 6,030 (of 10,144 total)
Eric M Russell (7/26/2012)
Lynn Pettis (7/25/2012)
Eric M Russell (7/25/2012)
July 26, 2012 at 7:34 am
Karthiart (7/26/2012)
ChrisM@Work (7/26/2012)
neil-560592 (7/26/2012)
...Why is it missing the first two values (USD and EUR)?
Thanks
Well I'm stumped on this one. The CASE expression is a red herring - it's irrelevant. What's...
July 26, 2012 at 7:25 am
thomasrichardson2000 (7/26/2012)
got it sorted.
Sometimes all it takes is the extra thought required to write the problem down. Would you like to share your solution with us Thomas? I'm sure the...
July 26, 2012 at 7:13 am
neil-560592 (7/26/2012)
...Why is it missing the first two values (USD and EUR)?
Thanks
Well I'm stumped on this one. The CASE expression is a red herring - it's irrelevant. What's significant is...
July 26, 2012 at 7:10 am
amitsingh308 (7/26/2012)
This query is work's for me but only the case where number of result set in both select statement are same but in my case issue is that...
July 26, 2012 at 6:16 am
Golfer22 (7/25/2012)
July 26, 2012 at 6:06 am
DerbyNeal (7/26/2012)
Hi all,My SQL 'Table1' needs an update to a single column 'STCount'. The update needs to be applied
grouped by 'Sales_Resp', 'Sales_Order', 'Sales_Type'.
I'd agree with Phil - it's not worth...
July 26, 2012 at 6:00 am
milindsaraswala (7/26/2012)
You are awesome. It works perfect 🙂
Thank you, that's very kind - but I'm just a jobbing TSQL programmer 🙂
Here's a slightly performance-enhanced version.
IF OBJECT_ID('tempdb..#PreAggregate') IS NOT NULL...
July 26, 2012 at 5:03 am
Thanks for the sample data, excellent work. This query generates the correct result set, you may wish to change the way it's presented:
IF OBJECT_ID('tempdb..#PreAggregate') IS NOT NULL DROP TABLE #PreAggregate;
;WITH...
July 26, 2012 at 4:16 am
milindsaraswala (7/26/2012)
Select [Business...
July 26, 2012 at 3:31 am
deepzzzz (7/26/2012)
Please find the below query
INSERT INTO tbl_employee (EmpNo,CompanyID,MngrID,DateOfFiled,DateOfClosed,DateOfCreation
,LastModified,Active,flag)
VALUES(
'2011-1508' ,89827,null,null,null,GETDATE(),GETDATE(),1,'C')
In the table, column 'Active' is of type int
I...
July 26, 2012 at 2:12 am
vinu512 (7/25/2012)
Jeff Moden (7/25/2012)
vinu512 (7/25/2012)
I think this is the simplest way.
Look at the execution plan for that, Vinu. There are 9 rows in one table and 4 in the...
July 26, 2012 at 2:07 am
Sean Lange (7/25/2012)
Phil Parkin (7/25/2012)
July 26, 2012 at 1:44 am
Gazareth (7/25/2012)
ChrisM@Work (7/25/2012)
Phil Parkin (7/25/2012)
July 25, 2012 at 8:46 am
Phil Parkin (7/25/2012)
Nice article - thanks for the link. When I read absolutes (like 'meaningless') my brain subconsciously challenges them. I still think it was the wrong word 🙂
Quite right...
July 25, 2012 at 7:28 am
Viewing 15 posts - 6,016 through 6,030 (of 10,144 total)