Viewing 15 posts - 1 through 15 (of 49 total)
I should have 7 rows. I already have a query that my business partner always asks me to run to check on client volume by whatever he feels...
December 5, 2012 at 7:43 am
Cadavre (12/5/2012)
george.greiner (12/5/2012)
December 5, 2012 at 6:58 am
ChrisM@Work (12/5/2012)
Can you post your original query, George? The last two weeks' version? Cheers.
My original query was:
SELECT PropertyInformation.BRTNumber, PropertyInformation.ClientsKey, PropertyInformation.ProductKey, PropertyInformation.DateFinished,
...
December 5, 2012 at 6:52 am
Found my answer!
April 13, 2011 at 10:00 am
Eugene Elutin (7/14/2010)
george.greiner (7/14/2010)
I have been able to filter the A row but all subsequent lines pull all the records as they do not have a "DateFinished" column. How...
July 14, 2010 at 8:27 am
Eugene Elutin (7/13/2010)
george.greiner (7/13/2010)
July 14, 2010 at 6:37 am
Is it possible to use a WHERE clause using this method? If not what is the best method to query the files I need out as this will provide...
July 13, 2010 at 12:36 pm
;WITH outpQ
AS
(
SELECT 1 AS grpOrd, CAST(null AS VARCHAR(255)) AS posInGrp, 'A' AS Ord, CaseNumber, 'A|' + CaseNumber + '|' + CAST(BRTNumber AS VARCHAR(11)) + '|' + IsNull(LegalDescription, '') + '|'...
July 12, 2010 at 9:24 am
;WITH outpQ
AS
(
SELECT 'A' AS Ord, CaseNumber, 'A|' + CaseNumber + '|' + CAST(BRTNumber AS VARCHAR(11)) + '|' + IsNull(LegalDescription, '') + '|' + IsNull(replace(convert(char(10), CoverDate, 101), '/', ''), '') +...
July 12, 2010 at 7:54 am
Eugene Elutin (7/12/2010)
george.greiner (7/7/2010)
:crazy:I was on holiday, so couldn't reply. Do you still have issues with your extract?
Hope you had a great holiday! I still have issues because I...
July 12, 2010 at 6:44 am
I got all the date conversions figured out now I jsut need to figure this next part out and this is done!
I have ae key "interstID" that is passed from...
July 7, 2010 at 10:40 am
Eugene Elutin (7/6/2010)
July 6, 2010 at 11:03 am
WayneS (7/6/2010)
george.greiner (6/29/2010)
--===== If the test table already exists, drop it
IF...
July 6, 2010 at 10:16 am
Eugene Elutin (7/2/2010)
July 6, 2010 at 9:38 am
Viewing 15 posts - 1 through 15 (of 49 total)