Viewing 15 posts - 1 through 15 (of 38 total)
I will try that out. Unfortunately no, I am not using 2005 yet
Thanks,
Richard
April 19, 2006 at 10:40 am
Sorry about that,
I want a cross tab report so I have data
Task Quarter Hours Cost EstHours EstCost
Task 1 Q1 40 4000 40 4000
Task...
April 19, 2006 at 10:11 am
Thanks again for your replies. I have run the DBCC SHOWCONTIG and it is at 100%. I am not on a busy server. Basically I am on...
March 29, 2005 at 7:12 am
Thanks for the replies,
QA says that the most of the time is spend on doing a Clustered Index Seek on the A & B Primary Key field.
I know that we...
March 28, 2005 at 1:19 pm
Alan,
Here are a couple of functions that I use. You can change the assignment of the db to be the db you want to change
Richard
Public Function SetStartupProperties()
'ChangeProperty "StartupForm", dbText,...
May 21, 2004 at 7:57 am
I believe you can tell Access that the default driver is Access by putting a semicolon in front of the connect string.
Dim tdfLinked As TableDef
Set tdfLinked = dbsTemp.CreateTableDef("Table")
...
May 18, 2004 at 4:08 pm
You can use GetSetting and SaveSetting, but you will need some sort of crypto function to secure it though.
Hope this helps,
Richard
May 17, 2004 at 12:15 pm
Belinda,
Are you looking for a way to dynamically create the links, or a way to store something in the registry, or both?
Richard
May 14, 2004 at 12:19 pm
How about this?
update a set a.a=b.a from acc b join a aa on (aa.accno=b.accno) where a.accno=b.accno and (acc.seq =
(SELECT MAX(seq)
FROM acc c
WHERE b.accno = c.accno))
May 4, 2004 at 6:54 am
Colin,
You can go through Enterprise Manager and right click on the database you want to import into and select All Tasks -> Import Data. This will walk you through all...
April 27, 2004 at 10:00 am
I think what might be happening is it is making a true copy of all 36k records.
One thing that you can try is doing a filter on the form. ...
April 16, 2004 at 12:29 pm
Is the field you are doing to find on an indexed field? 30-40k still shouldn't take that long with the proper indices.
Richard
April 16, 2004 at 8:46 am
Actually, I create the linked tables on the fly. The way I handle the temporary tables is to use ADO to call stored procedures and then I have a routine...
March 29, 2004 at 2:04 pm
I have done this many times as well. We had a very dynamic data structure as well. We were constantly creating new linked tables to look at. If you need...
March 29, 2004 at 8:42 am
I don't know if this is what you are looking for, but you can use this code behind a list box or a combo box that lists all of the...
March 29, 2004 at 8:35 am
Viewing 15 posts - 1 through 15 (of 38 total)