Excel Database ready for viewing

Hi all hope you can advise me.
I have an Excel Database that I want viewers of my website to
be able to search.I found the
http://www.wrensoft.com/zoom/index.html
to use for the searching.
I want to know how best to structure the database for viewing
purposes on the web.What format etc.
What I am after is to have a "search the database page" that
when a search is done elements of the database is brought out in
the results.I would like each search result to have it's own page
so that only the specified search results comes up and not any
other.
I'm not quite sure that what I want can be done from this
excel doc.My thoughts are and I may be wrong is that this being a
simple .xls doc. (Excel doc) doc the results will bring out
highlighted parts that were relevant to the viewer's search.
Any help/advice would be great.
Thanks Mark

> I have XP Home 5.1.2600 service pack 2
XP Home does not include a webserver. If you wanted to
locally test
server-scripted pages, you would have to install Apache.
> Do I actually have to have this on my PC.Why do I need a
web server on my
> PC ?
If you want to locally test pages that interact with a
database (whether
Excel, Access, or MySQL), you would need a local webserver.
Without one,
the best you could do would be to upload pages and browse to
them. If your
pages are static HTML only, then your local preview will work
fine, and you
would have no need for a local webserver.
> I want a database full on information.Tha database will
sit hidden from
> web
> visitors.I will put a search Form on the web page for
people to search the
> Database.
Unless you want to work in PHP and install Apache and MySQL
locally, then
you are hosed. This is not a hard thing to do. It's how I am
configured.
> Can I have a few
> levels in the database I.E. a more detailed page as I
could in HTML. using
> links. from page to page.
Sure.
> The rason I'm not using HTML. in the first place is
because the Data will
> be
> quite vast and I don't want to get lost in thousands of
links.
You couldn't practically use HTML for this anyhow.
> Am I going down the right path with PHP / MYSQL and so
on.
Yes. Get David Powers' excellent book on DWCS3 and PHP/MySQL,
and get busy.
He gives complete instructions for setting up your system.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"markie12345" <[email protected]> wrote in
message
news:[email protected]...
> Hi Murray
>
> I have XP Home 5.1.2600 service pack 2
>
> Do I actually have to have this on my PC.Why do I need a
web server on my
> PC ?
>
> To tell you what I'm doing again just to make sure I am
going down the
> right
> road for what goal I am aiming to.
>
> I want a database full on information.Tha database will
sit hidden from
> web
> visitors.I will put a search Form on the web page for
people to search the
> Database.
>
> The goal is to have the results come up in another
page.Can I have a few
> levels in the database I.E. a more detailed page as I
could in HTML. using
> links. from page to page.
>
> The rason I'm not using HTML. in the first place is
because the Data will
> be
> quite vast and I don't want to get lost in thousands of
links.
>
> Am I going down the right path with PHP / MYSQL and so
on.
>
> Kind regards mark
>

Similar Messages

  • How to open a database object for view/edit using a command (v. 3.2.20.09)

    How can I open a database object for view or edit using a command in Oracle SQL Deveveloper?
    I find browsing or search for object in a large database to be slow and too cumbersome.

    Shift-F4 (pop-up descrribe) on a table name in the worksheet will let you view table details, but there is no quick edit.
    You can use filters on the object browser to reduce the number of visible objects.

  • BT your account is ready for viewing on line e-mai...

    Have received 160 and still counting e-mails from BT in the last 24 hours telling me my account is ready for viewing (yes it was).
    How do I stop them?
    Now I know the benefit of paper billing !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    When it got to 340 e-mails and BT had NOT resolved the issue, I had to route that e-mail address via another ISP where I could use a filter to reject all e-mails from eBilling.
    Not happy with BT, but do they care?

  • When I try to download a movie it says it will be ready for viewing in 10 hours. I am connected to wireless internet. What is the problem?

    When I try to download a movie it says it will be ready for viewing in 10 hours. I am connected to wireless internet. What is the problem?

    How fast is your internet connection and do you know what wireless standard your router is? Because download time will depend on several factors. The 1st one being the speed of your connection,2) the size of the file being downloaded,& 3) how fast your router send and receieve the data.

  • HT203175 I just bought "Identity Thief".  Itunes says it has received and accepted my code and my movie is ready for viewing.... The movie shows up in my library as being there... I go to play movie and it just sits there and doesn't play... what to do

    I just bought the movie Identity Thief... Itunes says it has received and accepted my code and my movie is ready to play... when I go to click on the movie that shows up in my library... it just sits there and does not play.... i tried to reenter my code and it says the code is already in use in my library.... What do I do...???

    Hi cjgurley,
    Welcome to Apple Support Communities.
    You may find some of the steps in this article helpful:
    Troubleshooting iTunes for Windows Vista or Windows 7 video playback performance issues
    http://support.apple.com/kb/ts1718
    If necessary, you can download purchases again by following the steps outlined here:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Best,
    Jeremy

  • How to get the List of Database Objects (Table/View) for a given APEX Page.

    Hi,
    I have an application and that consist of pages like page1,2,3,.....
    *1.* I want a report which can give me the list of all the Pages1,2,3,....
    I am using the following query to acheive this.... THIS IS FINE..
    select a.workspace, a.owner, a.application_name, b.page_id, b.page_name
      from apex_applications a,
           apex_application_pages b
    where a.workspace = b.workspace
       and a.application_id = b.application_id*2. Now, I want for each individual page*, the list all the database objects (tables/views), which that page is using.
    I am using ALL_DEPENDENCIES , but I am not getting the result.
    So, want to know if there any view/table, where I can get the Application Pages & there database object list...
    Thanks,
    Deepak

    Hari,
    Thanks for the response.
    The view APEX_APPLICATION_PAGE_DB_ITEMS will only give me the table name related to any Page Items defined to that page..It will not give me all the database objects..
    suppose we have a Page, having a report based on multiple tables and there is no Page items defined on that page, we will not have any value in this ....DB_ITEMS table. same thing if we have define some PL|SQL(using some table/view) in a Process, that will not be populated in .....DB_ITEMS table. I want some thing like all the database objects (table/views/function/procedure/.....) for a particular Page ID.
    Thanks,
    Deepak

  • As a new user of apple TV, I need some advice. When I rent a movie from Itunes for viewing later, it seems to download for a second time, with a message saying ready to view in 30 mins, it proceeds to load up all over again. What am I doing wrong

    As a new user of Apple TV, I need some assistance.When I rent a movie on iTunes and download for viewing later, say a day or two later, It seems to load itself all over again with a msg saying ready to view in 25 mins ! So having waited the 25 mins movie starts and runs for maybe 1 hour and the pauses for maybe 5 mins while it seems to load again . any help appreciated

    Welcome to the Apple Community.
    If you use the Apple TV for something else or turn it off it will erase whatever is on it's drive. If you are going to download content for later viewing you might consider doing it on the computer, downloads don't disappear until they expire and you can watch them as many times as you want.

  • Product Database Management For Manufacturers Web Site - How do I do this W/ Templates?

    In short, I have an excell database of product. I am
    developing a web site for a factory with many products. I have
    never used a database to fill specific template data, except for
    3rd party shopping carts...
    So, how do create a database, upload it to the site, and
    allow users to access product information? Looking for your typical
    database to template set up with tags in specics spots withint he
    HTML of the template that reference the columns of data in a
    specific row of the database.
    I basically need a shipping cart, but with no "BUY" or "VIEW
    CART" buttons.
    Thanks!

    I'm not an expert on this but you need to know what sort of
    server
    you're going to be using. The server can drive what database
    you're
    going to use.
    MySQL?
    MSSQL?
    Access?
    There are others.
    If you're on a PHP server you may want to stay with MySQL.
    Talk to your
    server admin to see what is installed. MySQL has a control
    panel called
    "Workbench" that can manage the database.
    MSSQL uses Enterprise Manager to administer the database.
    Whether it's MySQL or MSSQL, each will be able to import
    data; same can
    be said for Access. Access is probably the least flexible; in
    other
    words, it's not built for as high of performance but for
    small sites
    without a lot of traffic, it's probably fine. With Access,
    you basically
    build the tables and everything on your own computer and then
    upload the
    mdb file to the server.
    Once you have the database, you can start to build a page in
    Dreamweaver. The first thing you should do is pick your
    server script
    language VBScript, php, ... You then create a connection to
    the
    database. Once the connection is made, those tables become
    available to
    drag and drop on your page. From there you can do repeats and
    form
    columns of data to display products.
    That's it in a nutshell.

  • Is 11G Ready for Production Env.?

    Hi,
    Our company is planning to upgrade for 11G and we have lots of queries for which i've been in touch with Oracle.
    At the same time, i'm gathering users views who are presenly runnning 11g on Production enviornments. I would greatly appreciate your feedback about the 11g database based on your expeirience.
    Do you think 11g is ready for production evn. or we should wait for sometime to get it matured, inorder make our productoin enviornment less error prone? Every company has their own way of handling production database and its issues, but a general view would be helpful.
    As per my research, 11g is only available for windows & Linux? We were looking for Solaris version for testing, any comments?
    Any other comments regarding 11g on production would help?
    Thank you
    Ratheesh

    At the same time, i'm gathering users views who are
    presenly runnning 11g on Production enviornments. I
    would greatly appreciate your feedback about the 11g
    database based on your expeirience. First 11g release was just two months ago, for only one platform (Linux x86 32-bit). How many of the user base, do you think, are early adopters and how many of those have had this new version running for a while in production? From what I've heard from around here, users/customers/vendors are currently moving from 9.2 to 10.2!
    Do you think 11g is ready for production evn. or we
    should wait for sometime to get it matured, inorder
    make our productoin enviornment less error prone?That is your decision to make. You should weigh in the costs/risks for your business, based on the real, defined needs or requirements for migrating to 11g (replacing a major piece of the infrastructure, with complex dependencies, should not be an easy decision).
    We were looking for Solaris version for
    testing, any comments?Since you haven't even begun testing, it this related to mid-term planning?

  • Is 10g RAC ready for OLTP

    To achieve high availability by eliminating single point of failures in the following areas we are thinking of having our OLTP DBs on a single 10g RAC cluster
    i) OS/Firmware patches requiring reboots
    ii) Unplanned server failures
    iii) One-off Oracle patches
    We have migrated our DSS systems to 10g RAC (windows x64). However, in the last 9 months since we deployed we have seen 2 issues: single node eviction & multiple node evictions. Single node eviction is supposedly fixed w/ a patch that needs clusterwide shutdown.
    The baseline for me on OLTP is 8i where I have taken DT once in 2 years to apply Oracle patches, once a year for OS patches and very rare server failures resulting in DB failover.
    Questions I have:
    a) Is 10g RAC really stable to be used for OLTP?
    b) How is this being designed elsewhere with a view to reduce planned/unplanned DTs
    thanks,
    SM

    > a) Is 10g RAC really stable to be used for OLTP?
    Loaded question as you are implying that until now, RAC has not been stable and not robust enough for OLTP.
    Stability for any system is dependent on:
    - platform h/w
    - storage h/w
    - network h/w
    - o/s s/w
    - application s/w
    - administration
    What RAC buys you is having multiple database instance for a single physical database. Which means that in the worse case where you are forced to down a platform because of one of the above reasons, the remaining platforms in the cluster should still be available.. courtesy of the share everything approach.
    But RAC alone is not the answer.. there are numerous factors to consider. One of my longest uptime databases is an Oracle SE server with a 12,000+ uptime. And it is used 24x7 as a data collection platform.
    It went down recently. The cause? Network errors and power failures that resulted in the rack cabinet housing this server, to be reset.
    Have numerous examples of how unforseen events caused disaster in a computer room. From dirty electrical power to an aircon automated switchover failing.
    RAC does not solve any of these. What happens when there is a power failure or h/w error with the switch used for the Interconnect? Without the nodes being able to communicate with one another, all nodes will be evict themselves from the cluster.
    Looking at RAC alone as The Solution to your H/A requirement is a bit naive IMO. Yes, RAC is an excellent and major cog in the wheel of H/A.. but there are others too.
    Q. Is 10g RAC really stable to be used for OLTP?
    A. As stable and as robust as you make it to be.

  • Ready for the enterprise?

    Forgive the newbie question, but I'm looking for testimonials for/against using htmldb to create enterprise scale applications. With most enterprise apps, the bulk of the work is in interfacing to existing infrastructure. Very little data is human generated - most comes from other processes and systems.
    Now, I recognize that no development system is going to cover all the issues listed. I'm just trying to see how many are covered by htmldb.
    My questions include:
    -Are there mechanisms for SQL access by htmldb apps to tables/views in other databases and allowing other applications SQL access to htmldb's tables/views?
    -What is the integration with Oracle's single-sign-on (SSO) infrastructure for credentials?
    -Are there automated import mechanisms to get data into htmldb? For example, we have one business process that has 10,000 small files in a linux filesystem that we would like to import into tables. A manual process for this is impractical. Is there an API for import?
    -Is there an ability to create a secure shell (ssh) session on an external computer, issue commands to the shell, and parse the results?
    -Is there a signaling mechanism so that an htmldb app knows that another external process has finished and data is ready for import? Likewise a way for an htmldb app to send a signal to an external process?
    -Is there a way to schedule periodic jobs, log cleanup for example?
    -Is there a way to pass a data file to an external application and display a graphical result from that external app? Think of a statistics package like SAS, where we want to send it business data and display the .jpg or .png graphical results in our htmldb app.
    Thanks,
    Bret

    Hey there...
    I think part (if not all) of your question can be answered by abstracting it a level. Think of all the tools that are available through PL/SQL or JAVA in the database. For instance...
    * Heterogeneous Services that allow you to access any ODBC/JDBC data source directly from within the Oracle database.
    * DBMS_JOB that allows the scheduling of jobs to run at a given time/interval.
    * DMBS_FILE_UTL that allows Oracle to interact with the file system.
    That doesn't even take into account the things you can do with Java in the database.
    In short, just about everything you mentioned can be done in one shape or form with tools that reside in or around the oracle database.
    HTMLDB is a front end interface tool that has access to all of the tools available to you at database level.
    So in short (and in my opinion): Yes, it is capable of creating Enterprise level applications. I'm building a fairly complex one right now that interfaces with 2 external (non-oracle) databases via Heterogeneous services, and which used DBMS_JOB to schedule jobs to collate data from an external file system.
    I hope this helps..
    Doug Gault
    TXI

  • Excel 2007 and Smart View 9.3.1.4.041

    Dear Experts,
    We are now working with Excel 2007 and Smart View 9.3.1.4.041, and encounter the problem that ervery time open the protected excel file there would be the warning message "Drawing Objectes in one or more sheet(s) in the workbook are protected. Please unprotect them and try to save again."
    Can any one suggest with;
    1. How to set the Excel security settings for Excel 2007 to work for smart view?
    2. How to avoid the message mentioned above while working with Excel 2007?
    3. How to create a protected Excel file to work with Smart View 9.3.1.4.041 both in Excel 2003 and Excel 2007?
    Tks
    Edited by: Moonlight on May 19, 2010 10:00 AM

    I've experiencied similiar problems, though other users may have found a better solution, I've unlocked the spreadsheat, refreshed, and then relocked via a VBA macro. A button object at the top of the spreadsheet was added to make it easier for the users use as well. If there is a better solution I am very interested in this as well.
    JTF

  • Apps no longer found on App Store - despite long been "Ready for Sale"

    As discovered yesterday, all our paid apps have been "lost" from the iOS App Store.
    An alert saying:
    "Your request could not be completed. The item you've requested is not currently available in the US store."
    ...appears instead.
    Nowhere are they to be found, either by navigating directly to their urls in a browser, or by searching via iTunes on computer, iPhone or iPad.
    Not even when clicking the link from within:
    [ my developers account > iTunes Connect > Manage your account > [particular app] > View in app store ]
    ...will they appear, despite them being marked as "Ready for Sale".
    This has been confirmed for the Swedish and US app stores so far, on different computers/locations.
    All these apps were approved between mid 2009 and mid 2010, and all have long had (and still have) the status "Ready for Sale" and are distributed worldwide.
    At the same time, only our FREE-apps are still to be found on the App Store.
    I've submitted a report to their support, but receiving a reply could take a while and in the meantime I'm loosing income.
    Does anybody know what's going on?
    Is this happening for others, or is it just our apps? Has this happened to others before?
    Thanks.

    Yes, apparently all of a sudden my previously active iOS-contract has been placed under "Request Contracts" instead of in "Contracts In Effect".
    When there's a change in contracts you'll always get a notification from Apple is my experience, but now nothing.
    My iAD and Free-contracts are still in effect, though.
    Could it be connection with having just paid the Mac OS X-developer fee? I strictly remember having ADDED this to my existing account, not creating a new one.
    So should I request a new contract, with all the hassle of having to send them the w8ben-form etc (taking forever)? Or is it a shorter process since I've been a registered developer for more than 2 years?
    Eh, I'll go ahead and click the "Request"-button for the iOS contract. If you have any more input I'll gladly hear it.

  • Firefox beta 35 not ready for prime time.

    I have spent the entire weekend trying to get the Firefox beta 35 to work. What I have found is that *all* extensions fail to work with the exception of Places Maintenance. I can not download any extension Firefox is so famous for. The error is something like "cannot install 'plugin-name' in it's current state." Enabling any extension require a FF restart, even Places Maintenance. Trying to remove an extension fails and must be done manually.
    I am on Windows 7 Premium desktop Firefox, 32 bit. I "committed" myself to FF 35 last night (which meant clearing history and cache on exit because the extension "Expire History by Days" was no longer working), when I discovered that 35 was not playing nice with some sites using Flash. It was a capricious thing. Many sites worked as normal but some would not render at all. Examples:
    http://www.wunderground.com/US/WI/La_Crosse.html
    http://www.weather.com/weather/5day/l/Hustler+WI+54637:4:US
    First time I have has a problem with a Firefox beta, but it is definitely not ready for prime time. I realize FF is attempting to get away from what we are calling "Proprietary add-ons" but FF 35 in its present state will just fill the Moz Support forums with millions of complaints (guess I am one of the first). I have at present 1 extension (the only one that works on 35), the above mentioned "Places Maintenance."
    I thought you might like this report as "user input." God knows I have tried...I must have downloaded 35 at least a dozen times and then been forced back to 34.0.5. So I am back on 34.0.5
    I have submitted a bug report here:
    https://bugzilla.mozilla.org/show_bug.cgi?id=1108196
    Let me know if anyone else is having these problems or anyone needs more information. I'd love to help fix this. I know some of you good support people have probably tried 35. Are you having the same difficulties?
    Below is my (34.0.5 but the same as I had on 35 last night with the exception of "Version") trouble shooting information minus a million entries for my printer:
    Application Basics
    Name: Firefox
    Version: 34.0.5
    User Agent: Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0
    Multiprocess Windows: 0/1
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: Places Maintenance
    Version: 1.3
    Enabled: false
    ID: [email protected]
    Graphics
    Adapter Description: NVIDIA GeForce 9400 GT
    Adapter Drivers: nvd3dum nvwgf2um,nvwgf2um
    Adapter RAM: 1024
    ClearType Parameters: Gamma: 2200 Pixel Structure: B ClearType Level: 50 Enhanced Contrast: 300
    Device ID: 0x0641
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.2.9200.16571)
    Driver Date: 12-19-2013
    Driver Version: 9.18.13.3221
    GPU #2 Active: false
    GPU Accelerated Windows: 1/1 Direct3D 11 (OMTC)
    Subsys ID: 304619da
    Vendor ID: 0x10de
    WebGL Renderer: Google Inc. -- ANGLE (NVIDIA GeForce 9400 GT Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: true
    AzureCanvasBackend: direct2d
    AzureContentBackend: direct2d
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.frecency_experiment: 3
    browser.places.smartBookmarksVersion: 7
    browser.search.suggest.enabled: false
    browser.search.useDBForOrder: true
    browser.sessionstore.enabled: false
    browser.sessionstore.max_tabs_undo: 0
    browser.sessionstore.upgradeBackup.latestBuildID: 20141126041045
    browser.startup.homepage: http://www.wcwcw.com/
    browser.startup.homepage_override.buildID: 20141126041045
    browser.startup.homepage_override.mstone: 34.0.5
    browser.tabs.loadInBackground: false
    browser.urlbar.autocomplete.enabled: false
    dom.indexedDB.enabled: false
    dom.mozApps.used: true
    dom.w3c_touch_events.expose: false
    extensions.lastAppVersion: 34.0.5
    font.internaluseonly.changed: false
    general.autoScroll: false
    gfx.direct3d.last_used_feature_level_idx: 1
    keyword.URL: https://www.google.com/search?q=
    media.gmp-gmpopenh264.lastUpdate: 1413301734
    media.gmp-gmpopenh264.version: 1.1
    media.gmp-manager.lastCheck: 1417991594
    network.cookie.cookieBehavior: 2
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1418059778
    places.history.expiration.transient_current_max_pages: 80511
    plugin.disable_full_page_plugin_for_types: application/vnd.fdf,application/vnd.adobe.xdp+xml,application/vnd.adobe.xfdf,application/pdf
    plugin.importedState: true
    plugin.state.np32dsw: 1
    plugin.state.npdeployjava: 0
    plugin.state.npgoogleupdate: 0
    plugin.state.nppdf: 2
    plugin.state.npwatweb: 2
    privacy.clearOnShutdown.cookies: false
    privacy.clearOnShutdown.formdata: false
    privacy.clearOnShutdown.offlineApps: true
    privacy.clearOnShutdown.sessions: false
    privacy.cpd.cache: false
    privacy.cpd.cookies: false
    privacy.cpd.offlineApps: true
    privacy.cpd.sessions: false
    privacy.popups.showBrowserMessage: false
    privacy.sanitize.migrateFx3Prefs: true
    privacy.sanitize.sanitizeOnShutdown: true
    privacy.sanitize.timeSpan: 0
    security.disable_button.openCertManager: false
    security.disable_button.openDeviceManager: false
    security.warn_viewing_mixed: false
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1415513129
    Important Locked Preferences
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.7
    Version in use: 4.10.7
    NSS
    Expected minimum version: 3.17.2 Basic ECC
    Version in use: 3.17.2 Basic ECC
    NSSSMIME
    Expected minimum version: 3.17.2 Basic ECC
    Version in use: 3.17.2 Basic ECC
    NSSSSL
    Expected minimum version: 3.17.2 Basic ECC
    Version in use: 3.17.2 Basic ECC
    NSSUTIL
    Expected minimum version: 3.17.2
    Version in use: 3.17.2
    Experimental Features
    ---------------------

    Just for the record I'm using Fx35b1 with lots of plug-ins and extensions with absolutely no problems now or for quite a long time.

  • Installation error message for Oracle Database software for version 10g

    Would someone be able to advise why I keep getting the following error message whilst installing Oracle trial Database software for version 10g Release 2 Standard Edition, Standard Edition One, and Enterprise Edition? Link listed below : -
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    Error message "Cannot create directory"C:\oracle\product\10.2.0\db_7\cfgtoollogs\dbca\projemp"
    Below is the 12 steps that I go through, please advise what I'm doing wrong : -
    1. (Operations) default is Create a database
    2. (Database templetes) default is general purpose
    3. (Database Identification) projemp.local for Global database name & projemp for SID
    4. (Management options) default is "Configure the database with Enterprise manager, also the options button has been clicked for "Use database control for database management"
    5. (Database Credentials) the options button has been clicked for "Use the same password for all accounts" so I've set up a new password, was that correct?
    6. (Storage options) the options button is clicked for "File System - use the file system for database storage.
    7. (Database file locations) the options button is clicked for "Use database file locations for template" Is this option correct? Other options are Use common location for all database files or use Oracle-managed files?
    8. (Recovery configuration) the options button is clicked for "Specify flash recovery area
    9. (Database content) nothing has been selected, the only option is "Sample schemas" should that be clicked?
    10. (Initialization parameters) the options button is clicked for "Typical- allocate memory as a % of the total physical memory
    11. (Database storage) no options available
    12. (Creation options) the options button has been selected for "Create Database"
    Click finish
    I then get a screen stating General purpose, click OK then I get the following error message as stated at the start of this e-mail ""Cannot create directory"C:\oracle\product\10.2.0\db_7\cfgtoollogs\dbca\projemp".
    Regards
    Phil

    855880 wrote:
    I have been trying to install the "Oracle Database software for version 10g Release 2 Standard Edition, Standard Edition One, and Enterprise Edition" about six times with no success.Do you realize you just mentioned 3 different and distinct products? So which one are you installing?
    >
    I've gone through my courses instructions as listed above (1-12) and end up with the following error message"C:\oracle\product\10.2.0\db_7\cfgtoollogs\dbca\projemp".What course?
    >
    I've removed the software from my computer using control panel, programs & features then uninstall once but the other five times the software hasn't been listed. Whilst the Oracle was on my task bar I was able to install using Start > Programs > Oracle - HOME-NAME > Database Administration > Database Configuration Assistant.No you didn't. Database Configuration Assistant does not remove software. It can remove a database. As I mentioned before, there is a difference between the software and the objects that software manages. Deleting an Excel spreadsheet is not the same as deleting Microsoft Office. Deleting an Oracle database with Database configuration assistant is not the same as removing the Oracle software.
    >
    Now that oracle is not on my task bar I've unzipped the link below, clicked on db, Disk1, setup, changed the Database password (is that correct?) install and I get the following error message "Check complete. The overall result of this check is: Failed<<<<<
    Problem: The install has detected that the primary IP address of the system is DHCP-assigned.
    Recommendation: Oracle supports installations on systems with DHCP-assigned IP addresses;
    However, before you can do this, you must configure the Microsoft LoopBack Adaptor to be the primary network adapter on the system. See the installation Guide for more details on installing the software on systems configured with DHCP."
    So what did you do with the above error message? Did you follow up on what it said? Did you read the very fine Installation Guide that comes with the software? Did you read the section on networking considerations where it discussed DHCP assigned addresses and installing the loopback adapter?
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    Ok, that link takes us to the download page, which does not shed any light at all on your problems
    I'm using Windows Vista Home Premium, 32 bit operating system, and my computer is saying I have 142 GB free space.
    If you read the installation manual that came with the downloaded software, you'd have seen in the prerequisites that Home editions of Windows are NOT listed as supported platforms, whereas Business, Enterprise, and Ultimate editions specifically ARE listed as supportd.
    Hope this is some help.And
    I'm not to clever on computers so would you be able to advise how I get to the command window to issue the SET command please?
    Also I've no idea what OS user I am, I'm taking an on-line Oracle course and been advised to install "Oracle Database software for version 10g Release 2 Standard Edition, Standard Edition One, and Enterprise Edition"
    How do I find out if I'm part of an Administrator, ORA_DBA group ?
    Can you walk me through how to create the directory from command line please?Ok, given the above statements from you, I'm not even sure where to begin. I don't want to be cruel, but this self-admitted lack of even the most rudimentary knowledge by someone attempting to learn about Oracle is truly astounding. What course are you taking? Why are you taking this course?

Maybe you are looking for

  • Policy Based Routing and IP Helper

    Can anyone help with an issue i am having with PBR and an IP Helper.  I cannot get devices in the VLAN with the associated SVI to get DHCP addresses, there is no DHCP server in the VLAN so an IP Helper is used but whenever i enable PBR on the SVI, DH

  • Does Action Script 2.0 have any classes to support networking?

    Im intending to implement a flashlite 2.0 application that deals with live cam. Users are able to stream live videos via 3G using their mobile phones. Im just wondering. Is flashlite 2.0 able to achieve that>? Or should i just stick to .NET or J2ME.

  • Hi all lost ipod has been replaced it with itunes music now cant sinc some of my music how do i sort this one

    hi all lost ipod has been replacedwith itunes music now cant sinc some songs how do this happen

  • Teaming Cluster ehcache error

    Hi there, I have a problem with the ehcache I guess. As soon as I activate Clustered Configuration the main context is no more initializing. I dont know whats wrong ? My configuration for the cluster is listed at the bottom of this entry. Hopefully s

  • Authenticate and fetch data

    I suppose scores of people have asked this question; and even after reading most of those threads, I still haven't been completely successful. Here's my query: I'm trying to write an application that opens an HttpURLConnection, fills the login and pa