473,378 Members | 1,355 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Help need for a quick way to preview .mdb databases

jbl
I some times have to scan 20 to 40 databases (on a daily basis) to see
who worked on that particular file and the only way to know is to open
it and check for their initials in the last field of the last record.

The file names are computer generated and no way of changing that so
that it would indicate who created it.

The only way I know of now is to manually open each file and then
check that last record.

I use PowerDesk as my Windows Explorer and it has a file preview but
it just shows the binary bytes of the .mdb file, not very useful.

I have tried MDBMerge, and it quickly merges all of the files and then
I can open 1 extremely large file but this is not really acceptable.

Is there any program or method that will allow me to quickly preview
the contents of the files?

Thanks

jbl
Jan 2 '08 #1
8 1380
"jbl" <jb*****@SPAMhotmail.comwrote in message
news:ra********************************@4ax.com...
>I some times have to scan 20 to 40 databases (on a daily basis) to see
who worked on that particular file and the only way to know is to open
it and check for their initials in the last field of the last record.

The file names are computer generated and no way of changing that so
that it would indicate who created it.

The only way I know of now is to manually open each file and then
check that last record.

I use PowerDesk as my Windows Explorer and it has a file preview but
it just shows the binary bytes of the .mdb file, not very useful.

I have tried MDBMerge, and it quickly merges all of the files and then
I can open 1 extremely large file but this is not really acceptable.

Is there any program or method that will allow me to quickly preview
the contents of the files?

Thanks

jbl
Sounds like an odd method of doing business to me but you could always have
your own file with linked tables to the target files. You could perhaps
then use a combination of grouped and union queries to display the last
record in each table. Not something I've tried but might be worth a go.

Keith.
www.keithwilby.com

Jan 2 '08 #2
Keith Wilby wrote:
"jbl" <jb*****@SPAMhotmail.comwrote in message
news:ra********************************@4ax.com...
>I some times have to scan 20 to 40 databases (on a daily basis) to see
who worked on that particular file and the only way to know is to open
it and check for their initials in the last field of the last record.

The file names are computer generated and no way of changing that so
that it would indicate who created it.

The only way I know of now is to manually open each file and then
check that last record.

I use PowerDesk as my Windows Explorer and it has a file preview but
it just shows the binary bytes of the .mdb file, not very useful.

I have tried MDBMerge, and it quickly merges all of the files and then
I can open 1 extremely large file but this is not really acceptable.

Is there any program or method that will allow me to quickly preview
the contents of the files?

Thanks

jbl


Sounds like an odd method of doing business to me but you could always
have your own file with linked tables to the target files. You could
perhaps then use a combination of grouped and union queries to display
the last record in each table. Not something I've tried but might be
worth a go.

Keith.
www.keithwilby.com
Expanding on Keith's explanation, you might want to look these commands
up in help. Dir() to find/loop thru the file names. Check out
TransferDatabase to link the table or OpenDatabase, TableDef and the
methods Connect, RefreshLink, and Delete of TableDef. To look at the
last record, look at OpenRecordset and GoToRecord.

Hero
http://www.youtube.com/watch?v=9IV9an1EE9M
Jan 2 '08 #3
On Jan 2, 8:19 am, jbl <jbl0...@SPAMhotmail.comwrote:
I some times have to scan 20 to 40 databases (on a daily basis) to see
who worked on that particular file and the only way to know is to open
it and check for their initials in the last field of the last record.
The file names are computer generated and no way of changing that
Uh huh!
so that it would indicate who created it.
If the initials are entered in the last field of the last record
interactively (by a person) then it should be a simple matter to add a
bit of code to the after_update event procedure of the form control
where that is done, that adds a line to a text file (one for all the
dbs) containing the information you require, eg
DatabaseName, Initials, Date_and_Time.
You could open the text file PDQ and see all the most recent activity
for all the databases.
If the initials are entered by a proecdure it would be a simple matter
to add code to the procedure that did the same thing.

I'm sure you'll be offended when I say that what you describe sounds
like total absurdity, but, mindful that inexperienced people read this
newsgroup, a person has to do what a person has to do.

Jan 2 '08 #4

"lyle" <ly************@gmail.comwrote in message
news:2d**********************************@e6g2000p rf.googlegroups.com...
>
I'm sure you'll be offended when I say that what you describe sounds
like total absurdity, but, mindful that inexperienced people read this
newsgroup, a person has to do what a person has to do.
My friend has been asking me about Office automation so that he can get
varying data files imported into Excel and then into an AS 400 system.
Apparently he is sent a PDF file by one party because then there is "no
dispute" about what data is being exchanged. Then he has to type that data
in by hand into the AS 400 thingy (whatever that is).
Jan 2 '08 #5
On Jan 2, 6:44 pm, "Deano" <de...@mailinator.comwrote:
"lyle" <lyle.fairfi...@gmail.comwrote in message

news:2d**********************************@e6g2000p rf.googlegroups.com...
I'm sure you'll be offended when I say that what you describe sounds
like total absurdity, but, mindful that inexperienced people read this
newsgroup, a person has to do what a person has to do.

My friend has been asking me about Office automation so that he can get
varying data files imported into Excel and then into an AS 400 system.
Apparently he is sent a PDF file by one party because then there is "no
dispute" about what data is being exchanged. Then he has to type that data
in by hand into the AS 400 thingy (whatever that is).
I expect your friend could download an ADOBE SDK from the ADOBE site
which would provide him/her with the insight/technology required to
import data from a PDF file. That sounds like too much work to me, and
far too challenging for a non-programmer (which it seems your friend
may be).

Could the "one party" be persuaded to send two files, the PDF file as
a record, and its source file from which your friend could do the
import?
Jan 3 '08 #6

"Deano" <de***@mailinator.comwrote in message
news:5u*************@mid.individual.net...
>
"lyle" <ly************@gmail.comwrote in message
news:2d**********************************@e6g2000p rf.googlegroups.com...
>>
I'm sure you'll be offended when I say that what you describe sounds
like total absurdity, but, mindful that inexperienced people read this
newsgroup, a person has to do what a person has to do.

My friend has been asking me about Office automation so that he can get
varying data files imported into Excel and then into an AS 400 system.
Apparently he is sent a PDF file by one party because then there is "no
dispute" about what data is being exchanged. Then he has to type that
data
in by hand into the AS 400 thingy (whatever that is).
Is the one party paying your friend, or the company your friend works for,
or are they "begging the file" from the one party as a "freebie"? If they
are paying the one party for the information, or if they are doing this as a
favor to the one party then they should be able to specify the format... at
least to specify something more usable than a PDF file.

Having to re-enter all the information from a printed/displayed copy just
guarantees that erroneous data is going to get into the database, even if
the PDF does "prove" the proper data was exchanged in human-readable form.

I've mellowed somewhat with age, but I still don't suffer such fools gladly.

I think there are some PDF-to-otherfileformat software packages, perhaps
freeware (if I were looking for these, I'd start at
http://www.sourceforge.net), but it may be that the PDF is formatted as a
report, and would still require some manual processing. I am sure there are
also software packages that allow editing the PDF even if you aren't the
originator; I wonder what the "PDF is proof" data provider would think if
they got one of these, made some changes, sent it back and asked, "Are you
sure this data is correct?"

In any case, there's no support in Access for importing from a PDF. There
may be, as Lyle said, a Software Development Kit available from Adobe, but
there may also be a cost attached, and there will certainly be a cost to
program it.

Larry Linson
Microsoft Access MVP





Jan 3 '08 #7

"Larry Linson" <bo*****@localhost.notwrote in message
news:qaZej.4583$Ko6.4515@trndny02...
>
"Deano" <de***@mailinator.comwrote in message
news:5u*************@mid.individual.net...

"lyle" <ly************@gmail.comwrote in message
news:2d**********************************@e6g2000p rf.googlegroups.com...
>
I'm sure you'll be offended when I say that what you describe sounds
like total absurdity, but, mindful that inexperienced people read this
newsgroup, a person has to do what a person has to do.
My friend has been asking me about Office automation so that he can get
varying data files imported into Excel and then into an AS 400 system.
Apparently he is sent a PDF file by one party because then there is "no
dispute" about what data is being exchanged. Then he has to type that
data
in by hand into the AS 400 thingy (whatever that is).

Is the one party paying your friend, or the company your friend works for,
or are they "begging the file" from the one party as a "freebie"? If they
are paying the one party for the information, or if they are doing this as
a
favor to the one party then they should be able to specify the format...
at
least to specify something more usable than a PDF file.

Having to re-enter all the information from a printed/displayed copy just
guarantees that erroneous data is going to get into the database, even if
the PDF does "prove" the proper data was exchanged in human-readable form.

I've mellowed somewhat with age, but I still don't suffer such fools
gladly.
>
I think there are some PDF-to-otherfileformat software packages, perhaps
freeware (if I were looking for these, I'd start at
http://www.sourceforge.net), but it may be that the PDF is formatted as a
report, and would still require some manual processing. I am sure there
are
also software packages that allow editing the PDF even if you aren't the
originator; I wonder what the "PDF is proof" data provider would think if
they got one of these, made some changes, sent it back and asked, "Are you
sure this data is correct?"

In any case, there's no support in Access for importing from a PDF. There
may be, as Lyle said, a Software Development Kit available from Adobe, but
there may also be a cost attached, and there will certainly be a cost to
program it.
It's less of a technical exercise and more about managing relationships. He
collects royalties and the other parties are distributors with whom he has
contracts. He *could* crack the whip and tell them to stop f**king around,
he's even toyed with the idea of putting out an Excel form to collate the
data - an idea which seems designed to annoy them I noted. I did suggest if
he gets the fields from them in an agreed format it shouldn't be to
difficult to import it into his system.

Thanks for the PDF tips, I will certainly let him know about that but I
think he should be rejecting that format in the first place.

It's a laughable situation and I feel sorry for him, he's extremely
professional but always gets these jobs working with cowboys.
Jan 3 '08 #8
"Deano" <de***@mailinator.comwrote:
>Apparently he is sent a PDF file by one party because then there is "no
dispute" about what data is being exchanged.
Tell the idiot other party to send him both a PDF and an Excel spreadsheet.
Re-entering data this day and age is exceedingly stupid and error prone.
>Then he has to type that data
in by hand into the AS 400 thingy (whatever that is).
AS/400 is an IBM mini-computer.

Tony

--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
Jan 4 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

19
by: Thue Tuxen Sørensen | last post by:
Hi everybody ! I´m maintaining a large intranet (approx 10000 concurrent users) running on one IIS box and one DB box with sqlserver 2000. Currently there is 2,5 GB Ram, 1 1400 mhz cpu and 2...
1
by: BiATZIFLOM | last post by:
Hi there i need some help with quick reports for borland. i have the following: C++ builder 5 Form with a QuickReport on Using BDE SQL Query: select * from contact, contactperson where...
1
by: Jarrod Hyder | last post by:
Ok, I wrote my own weblog and I'm working on the web interface for adding/editing my posts. I decided to add a little preview button...when the button is clicked it is suppose to open a pop-up...
0
by: sara | last post by:
I am new to Access and especially to forms and code. I have a form in each of 5 databases that allows the user to enter the date and then automatically run all the reports for that date. The user...
0
by: Shawn Mehaffie | last post by:
I am creatign a screen saver and am having a problem with showing the screensaver form in the preview pane. The code works correctly in the the form does display within the preview window. I created...
0
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted...
8
by: paii, Ron | last post by:
I have a report that is opened in preview mode, the users can view it then send it to a printer. I want to; in the same command display a dialog box with "Yes/No" to confirm the next step. How do I...
1
by: Webstorm | last post by:
Hi, I hope someone can help me sort this out a bit, Im completely lost. Here is the page I am working on: http://www.knzbusinessbrokers.com/default.asp I have 3 search critera that I need to...
14
by: Jeff | last post by:
Hello I'm teaching myself web programming in ASP.NET using freely available online resource and videos. It's going really well and I've built myself some personal web pages based on the Visual...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.