Migrating Access Database to Web WITH FORMS (not just backend)

How difficult would this be, what steps would be involved and is Dreamweaver capable of helping?
The server uses IIS and ASP so compatibility should be fine with access.
I have enough of a programming history to replace vbasic code with ASP code if I read about the language, but would like to do the least amount of work required.

Lets just say that Access and Oracle are completly different animals and leave it at that. What I believe you need to do is:
1. Create an Oracle Database using the Database Creation Assistant. (Keep all the Defaults, and keep track of any passwords that are used.
2. Using the System (DBA) account, crate a user to hold the Access Schema (Never create objects in the SYS account and you shouldn't do that with the SYSTEM account either.
3. Run the Access Migration Workbench.

Similar Messages

  • Database 11g r2 with forms 6

    can we connect orace database 11g release 2 with forms/reports 6.

    no you can not connect oracle database 11g r2 with forms or reports 6.
    as forms and reports builder 6/6i support to 10 g.
    so you have to shoft your forms and report on developer suit 10g or heigher.

  • 1. How can we search the Forum to see if a question has already been asked? 2. Can I send a Web Page and not just its Link?

    1. How can we search the Forum to see if a question has already been asked? Search goes back to Help and out of the Forum.
    2. Can I send a Web Page and not just its Link? Explorer allows it.

    1. How can we search the Forum to see if a question has already been asked? Search goes back to Help and out of the Forum.
    2. Can I send a Web Page and not just its Link? Explorer allows it.

  • How to administer an Access database via web-based interface?

    There are times when I need to edit a database record to do something my CMS wasn't designed to do, so I have to manually edit it. Normally I just ftp the Access mdb file to my pc, make edits, and reupload the mdb file and hope nobody updated the database in the meantime.  Does anyone know of a web-based database admin system that will allow me to edit Access data?  Sure would be nice if I could install something on the server that would allow me to edit any datasource there and not have to have a separate, customized interface for each datasource.
    Thanks for looking, Bill

    I would recommend naming that page with an extension that the web server will not serve.  Rename it to use it and then rename it back when done.
    Or just put access restrictions on it via the web server, so one needs to authenticate to the system before using it.
    Or stop using Access and use a decent DB: Access is not appropriate to be used as a DB for a web application.  But that might not be an option.
    Adam

  • Copy access data into oracle with form builder 9i

    hello
    i need to copy/import data and tables from an MS access database into oracle 9i database. the situation is each time i login to my forms applicatin i will need to do that. any idea pls...
    the access db is frequently updated. so when i login into my forms application it needs to be reimport the data from access db. can any1 pls help me?

    To my opinion, there are 3 potential approaches :
    1. rewrite the application, that data are stored directly in the oracle database
    or the program writes flat files somewhere to the file system which are able getting
    imported from the target instance on daily basis or job driven;
    2. The "Access-driven approach" : link oracle tables into the MS-Access application
    using an ODBC-connection and build a macro in Access which is exporting the stuff to
    the target instance; in order to do so, the Oracle Client and ODBC-Drivers needs to
    get installed on the PC where MS-Access is started to start the exportation process
    (which is probably yours).
    You may then create tables in the target instance and link them from within Access
    using ODBC as the datasource
    3. The "Oracle driven approach". explained in detail here, never tried it, but maybe
    worth a look
    http://www.orafaq.com/node/60
    Basically, install the Oracle Software on a PC, configure an ODBC-Connection and start a
    Listener there;
    The target instance (which may no run on a UNIX system) is now able to commuincate
    with the local running listener on your PC which itself is instantiating a connection to
    the Access "Database" using the ODBC-Connection.
    In this way, your PC acts as a database server from the Oracle Net point of view.
    In theory, this could even work, depending on the ability to connect from the
    instance server directly to the given IP of your PC (Security ?? Hmmmz)

  • Access request number pending with which approver in backend?

    Hi All,
    Is there a way to see particular Access request numbers are pending with which approver in BACKEND grc system?
    Thanks for any inputs

    Dear Sush,
    as Suvonkar mentioned you can use Search Request screen to find pending approval requests. If you press Instance Status button you can see approvers for each path/stage.
    Instance Status:
    Also it is possible to see in the Audit Log.
    Regards,
    Alessandro

  • Why can't I access fully authorized CC apps and not just trials?

    Sales says my purchase has been approved. However, when I open a CC application, it asks me for a serial number which I don't have. I was not given one by Adobe. Also, most of the apps in my Creative Cloud Desktop appear as "Try" not "Install." How do I get fully "authorized" so I can utilize fully authorized apps, not just Trials?    

    Hi geckocrown99,
    This happens when your system is not able to connect to the activation server.
    You should check the 'hosts' file in your computer and delete all the Adobe entries from the hosts file.
    The location of the hosts file is
    For Windows :-- C:\Window s\System32\drivers\etc\hosts
    For Mac :-- Finder --->Go--->Go to folder--->/etc--->press enter--->hosts
    Open the hosts file with Notepad(for windows) textedit(for mac)
    Once you have deleted the Adobe entries from the hosts file after that you can open Creative cloud desktop.
    Thanks
    Kapil

  • Accessing page history (pages actually viewed, not just entered URLs)

    Hi, this is the second of two questions (figured out the third question referenced in my previous posting). Again, thanks in advance for your help.
    Safari 3.1.2, Windows XP Professional SP2
    In IE and Firefox, there are little "down arrows" by the "Back" and "Forward" buttons, which display a history of the pages I've actually viewed (not just the URLs entered in the address box). I don't see anything like this in Safari. Does Safari have this capability. If yes, how is it accessed?
    Thanks,
    Steve

    Did you try clicking and holding down the mouse button on one of those arrows (assuming that you can go back or forward to a page you've already been to? It should work.
    Mulder

  • Accessing database package variables from Forms

    I have a database package that populates a table of values, i.e.
    type t_route_list is table of rt_route.RTR_ID%type;
    route_list t_route_list
    route_list gets populated by a package function and I want to access route_list in the Form.
    While I can access other package variables by writing a function that returns the variable, Forms doesnt seem to like functions that return a user defined datatype as above. I have also tried using a procedure with an OUT param instead of a function but it also fails with same error.
    i.e.
    declare
    v_route_list pkg_bulk_route_replace.t_route_list;
    begin
    pkg_bulk_route_replace.init;
    pkg_bulk_route_replace.get_route_list(v_route_list);
    message(v_route_list(1));
    end;
    This will not compile, but removing the index (1) from the last line makes it compile but crash with ORA-0600.
    The code above with message replaced with dbms_out.put_line works fine on TOAD.
    So my question is......
    Can my database package return a plsql table to a form and if so, how?!

    Actually I've got this to work now!
    Thde main culprit appears to be a difference in the version of sql or pl/sql used on forms (version 5) and the database (8.1.7).
    I had defined my table as a nested table. By redefining this as a indexed table, simply by adding on 'index by binary_integer' on my server package, I am suddenly able to access the elements of the table on my form. Fortunately this did not break the server code either - the table was populated using bulk collect and that still works.
    Still got a bit of coding to do, but things are looking up now.

  • Unable to Migrate WCS Database to NCS with Demo License

    I have NCS 1.1.0.58 running on a VM with a demo license, should I be able to migrate my WCS 7.0.230.0 database to NCS?  I can not tell if the  migration process worked and there are no objects in NCS.  I have attached a console capture of the migration console messages.
    Thanks in advance,
    Bob

    You have probably thought of this already but, If the tables are the same in both sides why don't you just work out the population order and export directly from Access into the empty oracle tables using ODBC?
    The way I do it is to create transition tables in oracle then have a script to load the tables and do some validation and error checking.

  • Exchange 2010 OWA access on internal LAN login form not working as expected

    hi
    We have exchange 2010 sp3 installed and working. we have two sites
    Site a
    1 x CAS
    2 X MBX
    Site b
    1 x cas
    2x mbx
    site A is the primary site we currently publish owa our through our TMG server located in the DMZ this is working as expected and carries out the forms authentication. our internal domain is company.local but our external domain is company.com
    we have created split DNS so that we could use a wildcard cert and to deal with CA new rules. All URL's in Exchange are configured to use the external reference of company.com/
    on the IIS server we have a redirection on the root of the site to redirect the requests through to OWA folder and we have basic Authentication enabled. on the OWA folder we have basic and windows authentication.
    The problem we have is that when users try to access OWA internally we get username and password box appears once you login with this it then takes you through to the the normal login screen and you have tyo login again I'm thinking that this is the windows
    authentication that is causing this but not sure?
    also would be good to get an understanding as to what the Authentication, SSL and redirection setting should be set to on your CAS servers as looking at the ECP and autodiscover folder within IIS this currently has a redirect set to go to OWA surely that
    cannot be right,
    thanks
    J

    Hi
    you are correct, the immediate concern is the double login to owa i do however want to also know what the settings/configuration for Authentication redirection and SSL should be set to on all virtual directories.
    we do not have any additional OWA virtual directories just the default
    These are the current live servers
    Identity                      : ACAS01\owa (Default Web Site)
    Url                           : {}
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   : https://email.Company.com.com/owa
    ExternalUrl                   : https://email.Company.com/owa
    InternalAuthenticationMethods : {Basic, Ntlm, WindowsIntegrated}
    ExternalAuthenticationMethods : {Fba}
    Identity                      : BCAS01\owa (Default Web Site)
    Url                           : {}
    Exchange2003Url               : https://www.Companyt.co.uk/
    FailbackUrl                   :
    InternalUrl                   : https://webmail.Company.com/owa
    ExternalUrl                   : https://webmail.Company.com/owa
    InternalAuthenticationMethods : {Basic, Ntlm, WindowsIntegrated}
    ExternalAuthenticationMethods : {Fba}
    These are the new servers which i have just installed
    Identity                     : CAS05\owa (Default Web Site)
    Url                           : {}
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   : https://webmail.Company.com/owa
    ExternalUrl                   : https://webmail.Company.com/owa
    InternalAuthenticationMethods : {Basic, Fba, Ntlm, WindowsIntegrated}
    ExternalAuthenticationMethods : {Fba}
    Identity                      : CAS06\owa (Default Web Site)
    Url                           : {}
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   : https://webmail.Company.com/owa
    ExternalUrl                   : https://webmail.Company.com/owa
    InternalAuthenticationMethods : {Basic, Fba, Ntlm, WindowsIntegrated}
    ExternalAuthenticationMethods : {Fba}
    Identity                      : CAS04\owa (Default Web Site)
    Url                           : {}
    Exchange2003Url               :
    FailbackUrl                   :
    InternalUrl                   : https://webmail.Company.com/owa
    ExternalUrl                   : https://webmail.Company.com/owa
    InternalAuthenticationMethods : {Basic, Fba, Ntlm, WindowsIntegrated}
    ExternalAuthenticationMethods : {Fba}
    I have noticed that FBA is set on the new servers does this need turning off and if so is this on IIS or in Exchange?
    the link that you have provided talks about creating new Vdir for TMG we are looking at removing TMG and replacing it with KEMP load balancers would we still need to have two Vdir to make FBA work internally and externally
     to make a new vdir do you need a new IP address? and what are the steps required in Exchange and IIS to get this working.
    thanks
    Jason

  • ___How to access database behind firewall with JDBC___

    How to access a database behind a firewall? I have an applet that runs from a server behind that firewall. I can make applet-servlet-database calls, but I cannot make applet-database calls. Therefore, I must go through servlets.
    This causes a problem as the ResultSet object is not serializable. I have found two solutions using a search.
    1) Store info into a Vector and transmit the vector. This option will take up a huge amount of time with large ResultSets.
    2) Used sun's CachedRowSet which is serializable. I read the liscence under the CashedRowSet, and it does not allow use for "productive and commercial" use.
    Does anyone have any other suggestions I am missing?

    I'm pretty sure there are other implementations of CachedResultSet out there that don't have the licensing restrictions on them, so maybe you could hunt down one of those.
    As far as storing it in a Collection of some kind, I've never found a huge performance problem in doing so. When iterating through the ResultSet anyway, the additional cost of placing data in a different structure is minimal, even on larger results.

  • Applet good to access database though web???

    Hi,
    I have a java3d applet which I must link to a database. And later the applet has to be accessible from a laptop not necessarily connected to the local network.
    I am quite new in this area ... as you might have guessed !
    First, do I have to use servlets ? Is it more or less works like php?
    Could someone give me a hint on the overall architecture of the system ? Any suggestions ?
    What I have in mind is a 3 tier application. For example Web server + Oracle server and the client connects to the web server.
    Hope someone can give me some ideas or suggestions.
    Thanks

    Use an applet if you must. I'd prefer a JSP that used JSTL.
    I think a servlet is a good gateway to that database. Let the JSP simply present results to the client. POST requests to the servlet, which interacts with the database on the user's behalf and sends results back to the JSP.
    MOD

  • Can Access Databases be used with Dreamweaver

    I have created a database with Access, and am wondering if it can be used with a site created with Dreamweaver

    You will need to convert it to MySql.
    http://www.mysql.com/why-mysql/white-papers/a-guide-for-migrating-from-microsoft-access-to -mysql/
    Nancy O.

  • How to access internal hard drive with screen not working

    Veteran Mac user from Spain,
    I am a graphic designer and i have a MacBook Pro 17 inch Intel Core 2 Duo 2.4 GHz (Santa Rosa) which i purchased in October of 2007 along with a 23 inch Apple Cinema HD Display Monitor which i have hooked up to my MacBook when i am working at home. About 2 months ago the right hand ventilator started making a very loud noise but because i had a lot work on i did not have time to send it away to be fixed. Then about a month ago the fan stopped working and i was very concerned that my MacBook was going to overheat but to my surprise the temperature never rose above 60 degrees, so i continued to work and every thing seemed to be okay. But a couple of weeks ago i was online and the computer suddenly froze up and when i restarted it all i got was a black screen on both the MacBook and the Cinema Display Monitor. The hard disk seems to boot correctly and the keyboard on the MacBook also is responsive (volume, brightness controls, caps/number lock, etc… are all responsive and the retroilumination on the keyboard also works). So on reading up on the forums i discovered that the graphics card NVIDIA 8600M GT is in fact faulty. I called apple and explained the problem and they told me that i will also have to replace the logic board.
    On discovering the problem i realised that it would take a while to be fixed and i would need another Mac to continue working. So last week last week i purchased a Mac Mini and hooked it up to my Cinema Display and everything is working fine, BUT i desperately need to access my work folder on my MacBook's internal drive.
    Can anybody tell me how to transfer the files from my MacBook (late 2007) to my Mac Mini without the screen working on my MacBook?
    If it helps, my MacBook is running Leopard 10.5.8 and the Mac Mini is running Lion 10.7.2. The Mac Mini has an Intel i5 processor 2.3 GHz.
    I would really appreciate the help, it is very urgent and i need to find a very quick solution, clients depend on it.

    Thank you very much for your swift response.
    I am going to try the second option that you propose because as i mentioned in my first post, i had my MacBook Pro hooked up to my Apple Cinema HD Display monitor and both screens were black.
    Just one question…
    Will the hard drive need an extrenal power source?
    I am guessing that it will use the Mac Mini's power supply but i just want to make sure.
    Thanks again! You have been most helpful.

Maybe you are looking for

  • Selecting just text fields throughout the entire document when editing forms in Acrobat Pro XI

    I edit PDF's all day and it is seriously time consuming to edit the properties of text fields when you can only select a few at a time due to other elements (checkboxes, radio buttons etc.) prohibiting you from simply "Selecting All" elements and edi

  • JClient Jtree Display Issues

    Hi I've got a JClient JTree which is used as a navigation tool to sync a master detail form. The JTree is on a scrollable panel within the master panel. The JTree model has been set up as follows: treePanelBinding = new JUPanelBinding(panelBinding.ge

  • Folders for Process chains

    Hi, I need to group process chains in a folder. I want to know, how to create this folder so that i can put newly created Process chain in the new folder.

  • Sharpening and noise in ACR 6.3.... advice please

    Hi, Where can I find some good tutorial stuff (or other advices) about sharpening and noise in ACR 6.3. My camera is a Panasonic DMC-FZ8. Adjustments like color / blacks / contrast I can "see" on my screen (I'm satisfied until now). But Noise and Sha

  • RAW (NEF) file for NIKON D800

    My Lr3 is not reading NIKO NEF (RAW) file after I updated the software. WHen will you be releasing NIKON RAW for D800?