Viewing 15 posts - 1 through 15 (of 17 total)
Sorry, I never found a way to handle this through the select statement. I just dropped the records into a staging table and then filtered out the duplicates.
September 15, 2014 at 10:02 am
Thanks for the advice. I will try option 1 and let you know how it goes.
November 6, 2012 at 5:38 pm
Thanks for your help. I was hoping there was a better way, but coalesce it is!
December 1, 2010 at 5:57 pm
Tony Palmeri (1/15/2010)
January 18, 2010 at 9:58 am
The pricing is fine when you are looking at the database server. The thing that kills me is when you scale out services to other servers. 2 scaled out report...
January 15, 2010 at 9:46 am
jcrawf02 (10/1/2009)
Nadrek (10/1/2009)
jcrawf02 (10/1/2009)
Why would you want the db to do this? Why wouldn't you require the application to..[clipped]..the app takes care of the rest.
Philosophically, with this argument, why...
October 1, 2009 at 2:41 pm
I have run into this before, and the article gives the first half of the solution. The second part is what I can't figure out; how to avoid overlapping time-frames.
The...
October 1, 2009 at 11:46 am
That is an interesting puzzle. Here is another solution using a CTE instead of a loop.
-- Setup
set nocount on
-- Create a table to store the results.
create table Doors
(ID int
,ChosenDoor int
,WinningDoor...
September 9, 2009 at 3:53 pm
How would something like this compare performance-wise? It gives you readability, but also great flexibility in filtering and sorting. You could take the persisted column and apply it to a...
August 19, 2009 at 11:03 am
Jack Corbett (11/25/2008)
Isn't it better to reward the thrifty instead of punishing them? What's better saving money or going back to the till for more later because you spent...
November 25, 2008 at 3:05 pm
Each company seems to have a different method of budgeting, but here is a basic overview of how/why "use it or lose it" works when done right. The first thing...
November 25, 2008 at 1:23 pm
Ok, I think I found the elegant solution...
I need to create a project event table: ProjectSK, DateSK, EventSK.
Events in this case would be limited to StartDate, ActualStartDate, EndDate, and ActualEndDate....
May 16, 2007 at 9:51 am
Thanks!
Ok, so it sounds like I should probably make the project table a dimension and a fact table.
May 4, 2007 at 3:27 pm
I understand that I can have more the one fact table, but the question is, "Is project a fact table or a dimension table?"
When looking at work it is obviously...
May 4, 2007 at 12:41 pm
Update:
I also tried editing the web.config file by adding the userName and password attributes to the identity.
authentication mode="Windows" />
identity impersonate="true" userName="localAdmin" password="adminPassword" />
This just gets me a "The page cannot...
April 10, 2007 at 9:58 am
Viewing 15 posts - 1 through 15 (of 17 total)