Viewing 15 posts - 31 through 45 (of 221 total)
Well I've got Access talking to my test database and I can edit and add rows to tables so in principal it's working, tarting it up a bit and making...
May 9, 2013 at 4:30 am
I do have Access installed too as part of Office 2010 so I'm giving it a look right now, using this: http://www.access-programmers.co.uk/forums/showthread.php?t=216956 as a v quick guide for...
May 9, 2013 at 4:03 am
I did actually consider Access this morning (for everything) but thought it was a step backwards to try and remember access from about 15 years ago when I was at...
May 9, 2013 at 3:21 am
Aye, that does make sense why BIG INT conversion didn't die but did run for ages before I killed it.
April 16, 2013 at 2:03 am
Performance may end up being important here, I've not decided, I may just pre-process the data in which case it's not overly important, thanks for the CTE example, I'll give...
April 15, 2013 at 10:20 am
Indeed, quite why I didn't just do something like this:
SELECT
t.ID,
t.Title,
(SELECT count(l.log_id) FROM #logs l WHERE l.id = t.id) as AllTime,
(SELECT count(l.log_id) FROM #logs l WHERE l.id = t.id and l.log_date...
April 15, 2013 at 9:51 am
What I'm trying to do is something I've not done before (perhaps this is why!), say you've created a temp table - a bit like my example - but you...
April 15, 2013 at 9:39 am
I figured somebody might know the answer from the 'double join' side of things...
Here's a couple of test tables with inserts:
create table #logs
(
log_id int,
id int,
log_date datetime
)
INSERT INTO #Logs SELECT 27824224...
April 15, 2013 at 9:26 am
I'd like to have time to try the above non CTE approach, time doesn't allow at the moment but hopefully at some point.
FYI the #test replica on my 'real' data...
April 12, 2013 at 8:04 am
Thanks for the responses guys, Lynn, I went with your method in the end, it's exactly what I was looking for!
I'm glad I was on the right track knowing some...
April 12, 2013 at 4:16 am
I meant to reply yesterday afternoon, I stumbled on the solution, sort of by accident!
On the table in question 'DataElemetStyle' was just left at the default of auto, changing this...
March 6, 2013 at 1:54 am
Paul, thanks for the reply, delayed response but to answer your two questions:
1. Both batch and row-by-row queries feature hard-coded numeric values, which are presumably keys for the table concerned....
February 22, 2013 at 7:53 am
Gabriel, that makes quite a lot of sense, I guess I could have broken my say 2,000 into blocks of 500 perhaps, however, in that instance out hours makes more...
February 18, 2013 at 10:26 am
That was my decision in the end to be honest, out of business hours. Worked out okay for this situation. I guess I was just thinking if one was foced...
February 18, 2013 at 6:15 am
Thanks for the response. In the situation I faced last week where I was updating contacts, about 2,000, on a local version of the database this took 1 second, on...
February 18, 2013 at 5:52 am
Viewing 15 posts - 31 through 45 (of 221 total)