Viewing 15 posts - 10,021 through 10,035 (of 10,144 total)
Hi smv
I'm using linked spreadsheets and doing updates, but the principle is probably the same - use a template spreadsheet and ensure that the columns you want numeric, are formatted...
November 14, 2007 at 2:50 am
Reckon Jeff's right.
Try this...
Select b.Col1, b.Col2, a.Col1, a.Col2
from Tab1 a join Tab2 b
on a.Col2 = b.Col2
... don't think you will find any rows where b.Col2 and a.Col2 don't match.
Then find...
November 13, 2007 at 10:15 am
Many thanks for your prompt reply, Rich. Both checked and negative.
Cheers
ChrisM
October 12, 2007 at 9:26 am
mrpolecat (10/2/2007)
.
.
.
-- took 1 hr 50 minutes
--new query with join similar to Peter's
.
.
.
--took 1 minute 11 seconds
Quite a perfomance boost for the join
No kidding Mr Polecat, nice result.
October 2, 2007 at 7:33 am
Hi Mr Polecat
Do you need columns other than uid2 in your inner derived table?
update tb_leadbox
set invalidflag=6
where uid2 not in
(select min(uid2) as uid2
from tb_leadbox
where entrydate >= dateadd(dd,-365,getdate())
group...
October 1, 2007 at 2:48 am
Paul
I posted the general locale earlier in the thread. Matt says it all (thanks Matt!)
Cheers
ChrisM
September 16, 2007 at 12:42 pm
Hi Robert
Have you tried "WHERE NOT DELETED()" in your query?
Cheers
ChrisM
September 12, 2007 at 1:37 am
Many thanks Steve, and thanks for the feedback Brandie.
Cheers
ChrisM
August 24, 2007 at 9:01 am
Brandie
You're absolutely right - I certainly hadn't considered the legal angle.
My post to the interviewer is exactly as above apart from blanking the names. The company has hired several times...
August 20, 2007 at 7:34 am
I'm not sure how relevant this is, but it kinda fits so here goes.
At a recent interview for a 6-month gig with a financial company, I was asked to...
August 20, 2007 at 7:01 am
Spot on, Will, that's the answer my interviewer was expecting two weeks ago - even though round manhole covers are rare over here in the UK - in fact I'm...
August 17, 2007 at 6:55 am
Just had a quick play with this, here's the content of a sample text file:
Seller UserId: NO MATCHING DISBURSEMENT!
Business Name: NO MATCHING DISBURSEMENT!
Order ID: 166118
Seller UserId: C544068076250756
Business Name: EOM-PHILLY...
August 17, 2007 at 5:57 am
Chris
Any feedback? What's your final solution?
Cheers
ChrisM
August 17, 2007 at 3:04 am
Person is one entity, which may or may not have attributes of breeder / owner etc. Keep persons together in one table.
Whether or not you decide to create tables...
August 16, 2007 at 5:02 am
Viewing 15 posts - 10,021 through 10,035 (of 10,144 total)