Viewing 15 posts - 1,171 through 1,185 (of 1,228 total)
You can't solve this without a precise and complete definition of 'this year' and 'last year'. They mean different things to different people.
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 11, 2010 at 2:35 pm
It's more difficult without fixed boundaries but I don't think it's unsurmountable. Thanks for the extra info Elias.
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 11, 2010 at 2:30 pm
Hi Elias
The code I sent you yesterday is primarily an attempt to identify facilities by means of a single surrogate key, and introduce a parent for common facility/collateral pairs, with...
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 11, 2010 at 1:35 pm
Hi Elias
This job will be quite a bit easier if you could split table [dbo].[zzzCovers] into three, as follows:
Collaterial information, which should have unique CollateralId.
Facility information, which should have unique...
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 9, 2010 at 2:29 pm
Can you show what you are trying to do with the aid of a couple of sample tables and a result set?
All the better if the sample data is...
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 8, 2010 at 3:39 pm
Is this part of a data migration / ETL process?
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 7, 2010 at 8:39 am
fmeuriot (2/6/2010)
I'm new to SQL and have a problem with a query that I just cant seem to be able to solve.
So, I have an Access database containing iclient number,...
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 7, 2010 at 8:01 am
Use a column list for each of your three inserts into the temp table so that you know for sure that your query output columns are going into the correct...
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 7, 2010 at 3:27 am
Anybody wanna beer? It's friday! My shout. Get yer shoes on. Lynn I'll get you a coke.
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 5, 2010 at 12:53 pm
sgmunson (2/3/2010)
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 3, 2010 at 12:53 pm
Hi Steve
I've had a play with this one as well - obviously - and from what I remember you can get it out in 4 passes: 2, 2, 1, 1.
The...
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 2, 2010 at 3:15 pm
sgmunson (2/2/2010)
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
February 2, 2010 at 1:57 pm
Hi Jorge, can you post the CREATE TABLE statement for dbo.sipDimensionPos please?
Cheers
ChrisM@home
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
January 25, 2010 at 3:04 pm
Using all or most of the suggestions so far, and including gadget type depending on the source table:
ALTER VIEW [dbo].[vw_AssetCommonDetail]
AS
SELECT DISTINCT d.[Gadget], d.AssetID, d.Location, d.Tower, d.[Floor], d.Cubicle, d.BaseVendor,...
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
January 24, 2010 at 4:22 am
There's yet another way to do this if you want an output row for each code - with OR in the join to the lookup. This isn't often recommended because...
For better assistance in answering your questions, please read this[/url].
Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]
January 24, 2010 at 4:08 am
Viewing 15 posts - 1,171 through 1,185 (of 1,228 total)