PC Review


Reply
Thread Tools Rate Thread

database information

 
 
Buggins
Guest
Posts: n/a
 
      6th Mar 2008
I am using FP 2003. I have set up a database using FP the decided to add
information that was on excel page. how would I send the information from
excel (or access) to the database so it shows up in a search.
 
Reply With Quote
 
 
 
 
Wayne-I-M
Guest
Posts: n/a
 
      6th Mar 2008
Hi

The main problem you would have is in maintaining any relationships - well
it's not a "real" problem it is just that if you google this, most of the
answer will remove the realtionships and basically "mess up" your DB. Mind
you in you're just using the access DB to store a sinlge table (eg. a list of
passwords, or dates, etc) then this will not be a problem.

You can use something like

DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
acTable, "TableA", "TableA", structureonly:=False
DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
acTable, "TableB", "TableB", structureonly:=False
DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
acTable, "TableC", "TableC", structureonly:=False

There is not much difference in exporting and importing (there are "some" -
just not many) so have a look at an answer I gave a while ago and feel free
to copy the code if you want. You will need to amend it to "send out" rather
than "bring in" but thats quite simple.

http://groups.google.com/group/micro...6781a92a2adf02

If you need more information you could post a question in the access area as
this is not really an FP problem

Good luck with your project


--
Wayne
Manchester, England.



"Buggins" wrote:

> I am using FP 2003. I have set up a database using FP the decided to add
> information that was on excel page. how would I send the information from
> excel (or access) to the database so it shows up in a search.

 
Reply With Quote
 
Buggins
Guest
Posts: n/a
 
      6th Mar 2008
I thought there would be something simpler. let me reask the question. I do
have 1 table with 8 fields right now. I want to create a new database in FP
that will have all this information on it. I think I have about 10k records
on that table and cant enter them into fp database submission page. how would
i send the 1 table to FP database. a new database.

"Wayne-I-M" wrote:

> Hi
>
> The main problem you would have is in maintaining any relationships - well
> it's not a "real" problem it is just that if you google this, most of the
> answer will remove the realtionships and basically "mess up" your DB. Mind
> you in you're just using the access DB to store a sinlge table (eg. a list of
> passwords, or dates, etc) then this will not be a problem.
>
> You can use something like
>
> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
> acTable, "TableA", "TableA", structureonly:=False
> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
> acTable, "TableB", "TableB", structureonly:=False
> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
> acTable, "TableC", "TableC", structureonly:=False
>
> There is not much difference in exporting and importing (there are "some" -
> just not many) so have a look at an answer I gave a while ago and feel free
> to copy the code if you want. You will need to amend it to "send out" rather
> than "bring in" but thats quite simple.
>
> http://groups.google.com/group/micro...6781a92a2adf02
>
> If you need more information you could post a question in the access area as
> this is not really an FP problem
>
> Good luck with your project
>
>
> --
> Wayne
> Manchester, England.
>
>
>
> "Buggins" wrote:
>
> > I am using FP 2003. I have set up a database using FP the decided to add
> > information that was on excel page. how would I send the information from
> > excel (or access) to the database so it shows up in a search.

 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      6th Mar 2008
You would need to open the Databases in Access and copy the table to the other database, etc.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================


"Buggins" <(E-Mail Removed)> wrote in message
news:2D6E67A0-6758-4C6F-A62B-(E-Mail Removed)...
>I thought there would be something simpler. let me reask the question. I do
> have 1 table with 8 fields right now. I want to create a new database in FP
> that will have all this information on it. I think I have about 10k records
> on that table and cant enter them into fp database submission page. how would
> i send the 1 table to FP database. a new database.
>
> "Wayne-I-M" wrote:
>
>> Hi
>>
>> The main problem you would have is in maintaining any relationships - well
>> it's not a "real" problem it is just that if you google this, most of the
>> answer will remove the realtionships and basically "mess up" your DB. Mind
>> you in you're just using the access DB to store a sinlge table (eg. a list of
>> passwords, or dates, etc) then this will not be a problem.
>>
>> You can use something like
>>
>> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
>> acTable, "TableA", "TableA", structureonly:=False
>> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
>> acTable, "TableB", "TableB", structureonly:=False
>> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
>> acTable, "TableC", "TableC", structureonly:=False
>>
>> There is not much difference in exporting and importing (there are "some" -
>> just not many) so have a look at an answer I gave a while ago and feel free
>> to copy the code if you want. You will need to amend it to "send out" rather
>> than "bring in" but thats quite simple.
>>
>> http://groups.google.com/group/micro...6781a92a2adf02
>>
>> If you need more information you could post a question in the access area as
>> this is not really an FP problem
>>
>> Good luck with your project
>>
>>
>> --
>> Wayne
>> Manchester, England.
>>
>>
>>
>> "Buggins" wrote:
>>
>> > I am using FP 2003. I have set up a database using FP the decided to add
>> > information that was on excel page. how would I send the information from
>> > excel (or access) to the database so it shows up in a search.



 
Reply With Quote
 
Buggins
Guest
Posts: n/a
 
      7th Mar 2008
when I open the databases, I have 1 that I was using, 1 table in it called
results with nothing in it. the other that I am wanting to add has 1 table
called table1. I added table1 to original db and now my results page comes up
with some of the information but not all. Is there a tutorial on intigrating
an access db?

"Thomas A. Rowe" wrote:

> You would need to open the Databases in Access and copy the table to the other database, etc.
>
> --
> ==============================================
> Thomas A. Rowe
> Microsoft MVP - FrontPage
> http://www.Ecom-Data.com
> ==============================================
>
>
> "Buggins" <(E-Mail Removed)> wrote in message
> news:2D6E67A0-6758-4C6F-A62B-(E-Mail Removed)...
> >I thought there would be something simpler. let me reask the question. I do
> > have 1 table with 8 fields right now. I want to create a new database in FP
> > that will have all this information on it. I think I have about 10k records
> > on that table and cant enter them into fp database submission page. how would
> > i send the 1 table to FP database. a new database.
> >
> > "Wayne-I-M" wrote:
> >
> >> Hi
> >>
> >> The main problem you would have is in maintaining any relationships - well
> >> it's not a "real" problem it is just that if you google this, most of the
> >> answer will remove the realtionships and basically "mess up" your DB. Mind
> >> you in you're just using the access DB to store a sinlge table (eg. a list of
> >> passwords, or dates, etc) then this will not be a problem.
> >>
> >> You can use something like
> >>
> >> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
> >> acTable, "TableA", "TableA", structureonly:=False
> >> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
> >> acTable, "TableB", "TableB", structureonly:=False
> >> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
> >> acTable, "TableC", "TableC", structureonly:=False
> >>
> >> There is not much difference in exporting and importing (there are "some" -
> >> just not many) so have a look at an answer I gave a while ago and feel free
> >> to copy the code if you want. You will need to amend it to "send out" rather
> >> than "bring in" but thats quite simple.
> >>
> >> http://groups.google.com/group/micro...6781a92a2adf02
> >>
> >> If you need more information you could post a question in the access area as
> >> this is not really an FP problem
> >>
> >> Good luck with your project
> >>
> >>
> >> --
> >> Wayne
> >> Manchester, England.
> >>
> >>
> >>
> >> "Buggins" wrote:
> >>
> >> > I am using FP 2003. I have set up a database using FP the decided to add
> >> > information that was on excel page. how would I send the information from
> >> > excel (or access) to the database so it shows up in a search.

>
>
>

 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      7th Mar 2008
You are not so much integrating, as you need to learn ASP/VBScript to access and display the content
of the two tables. Start by looking at the samples on http://www.asp101.com


--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================


"Buggins" <(E-Mail Removed)> wrote in message
news:E167C5BA-A06A-49FD-A92B-(E-Mail Removed)...
> when I open the databases, I have 1 that I was using, 1 table in it called
> results with nothing in it. the other that I am wanting to add has 1 table
> called table1. I added table1 to original db and now my results page comes up
> with some of the information but not all. Is there a tutorial on intigrating
> an access db?
>
> "Thomas A. Rowe" wrote:
>
>> You would need to open the Databases in Access and copy the table to the other database, etc.
>>
>> --
>> ==============================================
>> Thomas A. Rowe
>> Microsoft MVP - FrontPage
>> http://www.Ecom-Data.com
>> ==============================================
>>
>>
>> "Buggins" <(E-Mail Removed)> wrote in message
>> news:2D6E67A0-6758-4C6F-A62B-(E-Mail Removed)...
>> >I thought there would be something simpler. let me reask the question. I do
>> > have 1 table with 8 fields right now. I want to create a new database in FP
>> > that will have all this information on it. I think I have about 10k records
>> > on that table and cant enter them into fp database submission page. how would
>> > i send the 1 table to FP database. a new database.
>> >
>> > "Wayne-I-M" wrote:
>> >
>> >> Hi
>> >>
>> >> The main problem you would have is in maintaining any relationships - well
>> >> it's not a "real" problem it is just that if you google this, most of the
>> >> answer will remove the realtionships and basically "mess up" your DB. Mind
>> >> you in you're just using the access DB to store a sinlge table (eg. a list of
>> >> passwords, or dates, etc) then this will not be a problem.
>> >>
>> >> You can use something like
>> >>
>> >> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
>> >> acTable, "TableA", "TableA", structureonly:=False
>> >> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
>> >> acTable, "TableB", "TableB", structureonly:=False
>> >> DoCmd.TransferDatabase acExport, "Microsoft Access", "Path to DB.mdb",
>> >> acTable, "TableC", "TableC", structureonly:=False
>> >>
>> >> There is not much difference in exporting and importing (there are "some" -
>> >> just not many) so have a look at an answer I gave a while ago and feel free
>> >> to copy the code if you want. You will need to amend it to "send out" rather
>> >> than "bring in" but thats quite simple.
>> >>
>> >> http://groups.google.com/group/micro...6781a92a2adf02
>> >>
>> >> If you need more information you could post a question in the access area as
>> >> this is not really an FP problem
>> >>
>> >> Good luck with your project
>> >>
>> >>
>> >> --
>> >> Wayne
>> >> Manchester, England.
>> >>
>> >>
>> >>
>> >> "Buggins" wrote:
>> >>
>> >> > I am using FP 2003. I have set up a database using FP the decided to add
>> >> > information that was on excel page. how would I send the information from
>> >> > excel (or access) to the database so it shows up in a search.

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't edit information in database =?Utf-8?B?U2FzaGE=?= Microsoft Access 1 5th Oct 2006 05:40 PM
Database Information glenn Microsoft C# .NET 2 6th Apr 2005 03:31 PM
Database Information =?Utf-8?B?Tmljaw==?= Microsoft Excel Worksheet Functions 1 7th Mar 2005 02:52 PM
Bringing information from 1 database into a new different database table Me Microsoft Access Getting Started 1 4th Nov 2004 07:30 PM
Re: Database Information Not refreshing in .NET Jody Fisher Microsoft VB .NET 0 7th Oct 2003 05:42 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:38 AM.