Newbie in using Oracle...

Hi everybody,
I am new here and new in using Oracle database or other tools, can you tell me what do I need to install in chronological order in order to learn how to use Oracle database as back-end for Visual Studio .Net 2003/2005/2008 projects?? Also, any suggestions on very useful books to learning to use Oracle (PL/SQL syntax), preferably showing equivalent of MS SQL syntax to Oracle SQL syntax and other things.
List of possible downloads:
1. Oracle Database 10g Express edition(Western European)
2. Oracle Database 10g Express Edition (Universal)
3. Oracle Database 10g Express Client
Which of these 3 I need to download?
1. Oracle Developer Tools for Visual Studio .NET with Oracle 10g Release 2
2. ODAC 10.2.0.2.21
3. Oracle 10g Release 2 ODAC 10.2.0.2.21
4. Oracle Developer Tools for Visual Studio .NET (for Oracle Database 10g Express Edition)
5. Oracle 10g ODAC 10.1.0.4.0
6. Oracle Developer Tools for Visual Studio .NET 10.1.0.4
7. Oracle 9i Release 2 ODAC 9.2.0.7.0
Which of these above I needed for Visual Studio .Net 2003/2005/2008 (Windows App, ASP.Net, Web Service and .Net Remoting)??
Thanks.
Dennis

Hi,
check below link. It will surely help you solve your problem:
http://www.dannorris.com/2007/06/13/oracle-http-server-apache-rotatelogs-configuration/
Regards

Similar Messages

  • Address Matching Using Oracle Text

    Hi,
    I am a newbie to Oracle Text. Hence please pardon my ignorance if this is a "RTFM" Query.
    We would like to clash our customer addresses against a table (GEO) that has addresses and geographic coordinates (latitude, longitude etc). The customer address data are in four VARCHAR2 columns (address1, address2, address3 & address4) and need not be in the same order as the address data in the GEO table.
    Has anybody used Oracle Text to do similar work to score addresses?
    Any links & pointers will be highly appreciated.
    Thanks in advance.
    Best Regards
    Ramdas

    When you use a multi_column_datastore, even though the index is only created using one column name and only that column name is used in the contains clause, it searches all columns named in the multi_column_datastore. It may be clearer if you use a dummy column with a name that has more meaning; I have used addresses in the revised example below.
    Queries run faster if you put everything in one contains clause instead of using multiple contains clauses.
    If you add a section group and field sections, then you can search within those sections and apply weights. In the following example I have doubled the score for results in address1 and address2 and halved the score for results in address3 and address4.
    SCOTT@orcl_11gR2> CREATE TABLE customers
      2    (id       NUMBER,
      3       address1  VARCHAR2(30),
      4       address2  VARCHAR2(30),
      5       address3  VARCHAR2(30),
      6       address4  VARCHAR2(30),
      7       addresses VARCHAR2(1))
      8  /
    Table created.
    SCOTT@orcl_11gR2> INSERT INTO customers VALUES
      2    (1, '123 Somewhere, Someplace', 'nowhere', 'nowhere', 'nowhere', null)
      3  /
    1 row created.
    SCOTT@orcl_11gR2> INSERT INTO customers VALUES
      2    (2, 'nowhere', 'nowhere', 'nowhere', '123 Somewhere, Someplace', null)
      3  /
    1 row created.
    SCOTT@orcl_11gR2> INSERT INTO customers VALUES
      2    (3, 'nowhere', '500 Oracle Pkwy', 'nowhere', 'nowhere', null)
      3  /
    1 row created.
    SCOTT@orcl_11gR2> INSERT INTO customers VALUES
      2    (4, 'nowhere', 'nowhere', '500 Oracle Pkwy', 'nowhere', null)
      3  /
    1 row created.
    SCOTT@orcl_11gR2>
    SCOTT@orcl_11gR2> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE
      3        ('cust_datastore',
      4         'MULTI_COLUMN_DATASTORE');
      5    CTX_DDL.SET_ATTRIBUTE
      6        ('cust_datastore',
      7         'COLUMNS',
      8         'address1, address2, address3, address4');
      9    CTX_DDL.CREATE_SECTION_GROUP
    10        ('cust_sg', 'BASIC_SECTION_GROUP');
    11    CTX_DDL.ADD_FIELD_SECTION ('cust_sg', 'address1', 'address1', true);
    12    CTX_DDL.ADD_FIELD_SECTION ('cust_sg', 'address2', 'address2', true);
    13    CTX_DDL.ADD_FIELD_SECTION ('cust_sg', 'address3', 'address3', true);
    14    CTX_DDL.ADD_FIELD_SECTION ('cust_sg', 'address4', 'address4', true);
    15  END;
    16  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> CREATE INDEX customers_idx
      2  ON customers (addresses)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  PARAMETERS
      5    ('DATASTORE     cust_datastore
      6        SECTION GROUP cust_sg')
      7  /
    Index created.
    SCOTT@orcl_11gR2> CREATE TABLE geo
      2    (address      VARCHAR2(40),
      3       coordinates  VARCHAR2(30))
      4  /
    Table created.
    SCOTT@orcl_11gR2> INSERT INTO geo VALUES
      2    ('500 Oracle Pkwy, Redwood City, CA 94065',
      3       '37° 31'' N / 122° 15'' W')
      4  /
    1 row created.
    SCOTT@orcl_11gR2> INSERT INTO geo VALUES
      2    ('123 Somewhere Street, Someplace City, CA',
      3       NULL)
      4  /
    1 row created.
    SCOTT@orcl_11gR2> SELECT SCORE(1), c.*, g.address, g.coordinates
      2  FROM   customers c,
      3           (SELECT address,
      4                '(' || REPLACE (REPLACE (address, ' ', ','), ',,', ',') || ')' addr,
      5                coordinates
      6            FROM   geo) g
      7  WHERE  CONTAINS
      8             (c.addresses,
      9              '((' || g.addr || ' WITHIN address1 OR ' ||
    10                   g.addr || ' WITHIN address2) * 2) OR ' ||
    11              '((' || g.addr || ' WITHIN address3 OR ' ||
    12                   g.addr || ' WITHIN address4) * 0.5)',
    13              1) > 0
    14  ORDER  BY SCORE(1) DESC
    15  /
      SCORE(1)         ID ADDRESS1
    ADDRESS2                       ADDRESS3
    ADDRESS4                       A ADDRESS
    COORDINATES
            68          1 123 Somewhere, Someplace
    nowhere                        nowhere
    nowhere                          123 Somewhere Street, Someplace City, CA
            59          3 nowhere
    500 Oracle Pkwy                nowhere
    nowhere                          500 Oracle Pkwy, Redwood City, CA 94065
    37° 31' N / 122° 15' W
            17          2 nowhere
    nowhere                        nowhere
    123 Somewhere, Someplace         123 Somewhere Street, Someplace City, CA
            15          4 nowhere
    nowhere                        500 Oracle Pkwy
    nowhere                          500 Oracle Pkwy, Redwood City, CA 94065
    37° 31' N / 122° 15' W
    4 rows selected.

  • String Parsing using Oracle

    Hello,
    I am newbe in Oracle SQL.I need help in parsing Strings.
    Example:
    ID Name Address num
    1 Peter 123 park st,223 park st 123,223
    Answer
    ID Name Address num
    1 Peter 123 park st 123
    1 Peter 223 Park St 223
    Please Help me.
    Thanks.

    Hi,
    If you're using Oracle 10.1 or higher, regular exprssions can help a lot.
    Whatever version of Oracle you're using, this will probably be easier in PL/SQL. You can write a Pipelined Function that takes a string such as '1 Peter 123 park st,223 park st 123,223' as input, and returns a variable number of rows (depending on what is in the input string), like this:
    ID     Name     Address          num
    1      Peter      123 park st      123
    1     Peter     223 Park St     223You probably want some other functions, too, such as a tokenizer, which divides a delimited sting into parts.
    As in any programming task, start by specifying exactly what you want to do. For example
    "An input string s consists of +words+ , that is, sub-strings that do not contain spaces, tabs or commas.
    S can contain 0 or more addresses.
    The first word of s (that is, the sub-string before the first space or tab) is the id. All addresses from the same string will have the same id.
    The second word of s is the name. All addresses from the same string will have the same name. If there is no 2nd word ...
    After the name, s is divided into addresses by commas.
    The first word of each section is the num. This same sub-string is therefore found in 2 columns of the output: address and num.
    If the address consists only of 1 word, then it is ignored."
    Depending on what your requirements are, this problem can be very complicated. Be prepared.
    Whenever you have a question, post a little sample data (CREATE TABLE and INSERT statements), and the results you want from that data. Explain, using specific examples, how you get those results from that data.
    In the sample data and results, include special cases and problems that you might encounter. For example,
    some streets have numbers for names, so you might see '123 45 st' as an address. What if your sting is '1 Peter 45 st'. Is num=45? Can the name be more that 1 word, e.g. '2 Mary Ann 17 Main St'?
    Always say which version of Oracle you're using (e.g. 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}
    Edited by: Frank Kulash on Sep 17, 2012 2:50 PM

  • Creating reports using oracle application server

    Hello All,
    I am a complete newbie with Oracle Application Server(OAS) and Oracle reports. My task is to generate HTML and PDF reports using OAS. The current application has a aspx pages(ASP.NET as front end) which calls a third party tool Fast Radar Report which fetches data as per the user need(like month, day, year, product name....) and displays it in a grid format. I have to remove the FastRadar part and use OAS's OracleAS Reports Services components to generate those reports
    I went through chapter 12 of Oracle.Application.Server.10g.Essentials by OReilly 2004 edition
    It briefly glances through that part. But, it seems to mention about Oracle Reports something like "Oracle Reports has a wizard-based frontend called Oracle Reports Developer that can build reports. Oracle Reports Developer is part of the Oracle Developer Suite. The reports created with Oracle Reports Developer can be deployed to the Web using OracleAS Reports Services support in Oracle Application Server."
    I am unclear what to do. Do I need to create the report format in Oracle Reports using wizard-based frontend called Oracle Reports Developer and then deploy it using OracleAS Reports Services?
    Or, is there a way to create the report format using OracleAS Reports Services without using Oracle Reports. I am told we have just OAS installed, don't know if Oracle reports is installed or not as it is done on a remote site.
    Any suggestions would be highly appreciated.
    Thanks a lot.

    Hi,
    One has to develop reports using Oracle Reports developer and then has to deploy it into the application server. To do so you need the Oracle developer suite installed, this has wizards which can be used to develop reports.
    This link might help you http://www.oracle.com/technology/products/reports/index.html.
    Mark it if it helps

  • Better keep on using Oracle or the new PostgreSQL?

    Hi,
    I hope this is the right Oracle Forum for my question.
    In the the company I work in, we've been using Oracle for many years. For a new project the company would like to use the open source PostgreSQL (that I've never used it).
    For going on using Oracle, we were asked to give a list of reasons for not using PostgreSQL
    Can you help me to gather a few good reasons for not changing DB and keep on using Oracle? Is there some particular bug or other things in PostgreSQL (security, pl/sql, ...) for which it would be better using Oracle?
    Thanks in advance!

    Consider what happens N years down the road, when you've discovered postgres doesn't quite scale as well, all the original developers are gone and all you can find is newbie graduates as maintenance programmers, who quickly leave for more interesting pastures in the paradigm of the day. You've saved X dollars in licensing fees, but are now in a hole where you have to develop it all over again and spend the fees anyways, and pay to keep the old one limping along for the years to replace it - or worse, just be stuck in a deteriorating situation forever.
    What I've seen even more often is there are COTS packages available that are an order of magnitude cheaper than developing with either. Is there a business case for the particular bespoke development? Does it need to be on the bleeding edge? Is the business willing to give all needed support, financial, logistical, cheerleading and patience?
    That said, if it is a small project that could easily be converted to another engine, the experience alone may be worthwhile.

  • How to connect database using oracle SQL developer

    Hello
    I am newbie in EBS R12
    I downloaded Oracle SQL Developer
    and create new database conenction
    Connection name: ebs demo db connection
    username:
    password:
    Role: Default
    Connection type: Basic
    Hostname: ebstailin.demo.com
    Port: 1521
    SID: clone
    when i try this there is an error
    Status: Failure-Test failed: lo exception: The Network Adapter could not establish the connection
    no idea about this
    but i used the apps/apps as username and password
    please help
    thanks
    Edited by: cheesewizz on Jul 16, 2010 11:35 PM

    Hello
    Thanks for your reply
    I tried to connect and here is the result: see below
    [oracle@ebstailin 11.1.0]$ sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.7.0 - Production on Sat Jul 17 15:35:31 2010
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> CONNECT apps/apps
    Connected.
    SQL>
    But still cannot connect using ORACLE SQL Developer
    thanks

  • Visualize timeperiods using Oracle

    We are developing a system for planning and allocating material for the building industry and are looking for a way to visualize periods in the database. Could we use Oracle Graphics for this or should we use Java or visual C++ do to so ? Anyone having experience in this area ?
    Thanks,
    Jurrian Kamp
    [email protected]

    There is a big discussion on this topic in the following link. I think you might be helpfull .
    The link is:
    A newbie question for a newbie user
    Regards
    Samujjwal Basu

  • Connection Problem When Using Oracle Developer Tools for Visual Studio

    I tried to create an Oracle Connection in my Visual Studio 2008 after installing Oracle 11g, Oracle Data Access Components (ODAC) with Oracle Devleoper Tools for Vissual Studio version 11.1.0.6.20.
    I followed the directions according to "Building .NET Applications Using Oracle Developer Tools for Visual Studio, when I click Test Connection, I keep getting the error message below.
    Microsoft Visual Studio
    ORA-12170: TNS:Connect timeout occurred
    OK
    ---------------------------

    I solved the problem.
    This is what I did for the benefit of the embryonic newbe like me.
    On the Add Connection Dialog
    1.     For Data source name I selected Local Database
    2.     I clicked on the specific User Name and I typed SYSTEM
    3.     For Password, I typed orcl (the password I setup during the installation) (HR did not work for me for User name and Password according to the tutorial instructions)
    4.     For Role, I selected Default
    5.     Connection Name, I selected Local Database
    6.     Before proceeding any further went to Windows XP SP3 where I was operating from, under Start Menu, I selected Administrative Tools then Services
    a.     On the Windows Services (Local) Dialog, under name, I selected OracleServiceORCL and OracleOraDb11g_home1TNSListener. I clicked on them one at a time
    b.     On the presented Dialog, under Service Status, I Clicked on the Start Button to start the Services
    c.     Then I went back to the Add Connection Dialog. I clicked on Test Connection, it connected okay. I finally clicked on Okay to connect.

  • Installation using Oracle

    We just use Adobe LiveCycle recently using Oracle DB.  But our current Oracle DB character set is 'WE8MSWIN1252' while Adobe suggested 'AL32UTF8'.  Is it really needed to use 'AL32UTF8'?

    I have this doubt of how can we do the Installation
    of oracle using OLTP option of Database Template. Is
    there, anthing like that? As, I know of only
    installation of oracle using normal CD's. Please,
    help in explaining with complete understanding.
    I hope, my question is clear.
    Please, help in solving the doubt.
    regardsAre you talking about installing the software or creating a database? Installing the software (from the CD or an image) has little or nothing to do with whether your eventual database(s) will be OLTP, DW, or something else. After you have installed the software, you can use dbca to create or assist in creation of a database, and that will present you with a choice of templates. The differences implemented by these templates will be in initialization parameters and perhaps default storage layout, all of which could be tuned after the database is created.
    It's been a while since I have run a software installation, but it seems that at the end it my automatically kick of dbca, so a newbie might be lead to believe it's all one and the same.

  • Using oracle reports designer can we export data to excel sheet

    using oracle reports designer can we export oracle data to excel sheet

    There is a big discussion on this topic in the following link. I think you might be helpfull .
    The link is:
    A newbie question for a newbie user
    Regards
    Samujjwal Basu

  • Install MAC OS X 10.63 on a PC using Oracle Virtual Box

    Hi I have a Sony VAIO PC I have tried to install MAC OS X 10.63 Snow Leopard using Oracle Virtualbox but it failed to boot from disc. I have spent 4 hours online with a justanswer.com analyst and he tried various things like copying to an isa and changing various settings but it did not work

    Virtual machine software makers won't violate Apple's EULA's.
    You can only run OS X on Apple hardware.
    However there is a solution if your willing to run Linux, it looks and acts like OS X (even better in some areas) and it's free to download and use.
    You won't be able to run OS X software, but free Linux software instead.
    The best way to go about this is to download and then install Linux Mint 10 (DVD 32bit Gnome) into your VirtualBox,
    http://www.linuxmint.com/release.php?id=15
    Next perform this Linux adjustment in terminal (in Linux)
    http://community.linuxmint.com/tutorial/view/326
    Once you do that then you can update Linux Mint via the Update Manager.
    What this will do is give you Linux Mint, which is the best Linux version (especially for newbies as everything is included), it has the gnome desktop based upon Ubuntu Linux, then after making the MacBuntu desktop switch you'll have a OS X looking UI on your PC in VirtualBox. (safer)
    The instructions work for Linux Mint 10, so that's why I gave you Linux Mint 10 link, even though Linux Mint is at 12, so you upgrade from within Linux Mint to 12 later got it?
    Search YouTube to see what MacBuntu looks like yourself.
    Remember your installing Linux into VirtualBox running under Windows, don't create a boot cd of Linux and install it directly onto your Windows machine without knowing full well what your doing as Windows could disappear as a result.
    Note: With Mac's we are pretty much stuck ONLY running OS X on our machines (and Windows 7), Apple doesn't support anything else, but on your PC hardware you can run any operating system you want, just not OS X.
    http://distrowatch.com/
    Good Luck

  • How are you Using Oracle Lite?

    I'm doing a little research and am curious how people are using Oracle Lite...any feedback would be helpful, thanks!

    Hi Laurie,
    First, Robert - Lite'n up. This a "user forum" and open to any question, right? If we start chastising people for posting what read to me as a rather innocent question you might not expect to get many questions from newbies and responses from the gurus.
    Laurie, I have ported a J2EE application that uses Oracle enterprise as the database and BEA WebLogic as the server to an "off-line" accessible application that uses OLite and Apache Tomcat. Since this application was already written and we did not want to rewrite any [significant] portion, so I decide on Tomcat instead of OLite's Java engine. However, I will most likely use OLite "Web" application(s) for other apps that we are considering porting to this platform. So far, it seems like a great platform for an application that works with a rdbms.
    Hope this helps with your thesis ; )

  • Error while creating a report that uses Oracle OCI JDBC connectivity

    Please let me know why my CR and LF characters are removed from my forum posting *****
    Hi,
    I was trying to create a report that uses Oracle OCI JDBC connectivity. I am using Eclipse3.4 download from "cr4e-all-in-one-win_2.0.2.zip".  I have successfully created a JDBC OCI connection.
    The connection parameters are given below:
    URL: jdbc:oracle:oci8:@xe
    Database: xe
    username: <userName>
    password: <password>
    I have tested the above connection in Data source Explorer and it works fine!!!
    But I am getting the following error when I drag-and-drop a table from the list of tables. Not sure what I am missing here?  Any help is highly appreciated.
    com.businessobjects.reports.jdbinterface.common.DBException: InvalidURLOrClassName
         at com.crystaldecisions.reports.queryengine.driverImpl.jdbc.JDBCConnection.Open(Unknown Source)
         at com.crystaldecisions.reports.queryengine.JDBConnectionWrapper.Open(SourceFile:123)
         at com.crystaldecisions.reports.queryengine.Connection.br(SourceFile:1771)
         at com.crystaldecisions.reports.queryengine.Connection.bs(SourceFile:491)
         at com.crystaldecisions.reports.queryengine.Connection.t1(SourceFile:2979)
         at com.crystaldecisions.reports.queryengine.Table.u7(SourceFile:2408)
         at com.crystaldecisions.reports.dataengine.datafoundation.AddDatabaseTableCommand.new(SourceFile:529)
         at com.crystaldecisions.reports.common.CommandManager.a(SourceFile:71)
         at com.crystaldecisions.reports.common.Document.a(SourceFile:203)
         at com.businessobjects.reports.sdk.requesthandler.f.a(SourceFile:175)
         at com.businessobjects.reports.sdk.requesthandler.DatabaseRequestHandler.byte(SourceFile:1079)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1163)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:657)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:163)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:525)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:523)
         at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
         at java.util.concurrent.FutureTask.run(Unknown Source)
         at com.businessobjects.crystalreports.designer.core.util.thread.ExecutorWithIdleProcessing$3.doWork(ExecutorWithIdleProcessing.java:182)
         at com.businessobjects.crystalreports.designer.core.util.thread.AbstractCancellableRunnable.run(AbstractCancellableRunnable.java:69)
         at com.businessobjects.crystalreports.designer.core.util.thread.PriorityTask.run(PriorityTask.java:75)
         at com.businessobjects.crystalreports.designer.core.util.thread.PriorityCompoundCancellableRunnable.runSubtask(PriorityCompoundCancellableRunnable.java:187)
         at com.businessobjects.crystalreports.designer.core.util.thread.PriorityProgressAwareRunnable.runSubtask(PriorityProgressAwareRunnable.java:90)
         at com.businessobjects.crystalreports.designer.core.util.thread.PriorityCompoundCancellableRunnable.doWork(PriorityCompoundCancellableRunnable.java:144)
         at com.businessobjects.crystalreports.designer.core.util.thread.AbstractCancellableRunnable.run(AbstractCancellableRunnable.java:69)
         at com.businessobjects.crystalreports.designer.core.util.thread.ExecutorWithIdleProcessing$IdleTask.run(ExecutorWithIdleProcessing.java:320)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Thanks
    Karthik
    Edited by: KARTHIK1 on Oct 14, 2009 9:38 PM

    Hi Ted,
    Thanks for the feedback. I was able to create a report in Creystal Reports Designer 2008 using OCI.  It is not allowing only in the Eclipse plugin. In our environment we are not allowed to user Oracle thin connections and ONLY OCI is allowed.
    1) Can you please let me know if there is a way to do this? 
    2) Will it allow data sources using native database driver?
    3) If so, can I use JRC to create these reports from a desktop java program?
    Thanks & Regards
    Karthik
    Edited by: KARTHIK1 on Oct 15, 2009 4:38 PM

  • Help needed in using oracle rules SDK

    Hi,
    For testing my rulesets using oracle rules SDK I doing the following:
    1. Creation of dictionary, ruleSet.
    2. Declared two kinds of globalVariable variables in my datamodel :
    Final and non-Final.(Type of these varaibles are String and Double only)
    3. Final globalVaraibles are used in creating rule's patterns.
    4. Non-Final globalVariables are used in creating rule's action.
    5. Functions are created for asserting globalVariables values and
    returning non-final varaibles, since those are required as action
    results.
    6. In java code I am testing my ruleset (dict.testRuleSet()). Before
    testing i am populating my final global variables (since these are used
    in rule's patterns),
    and updating datamodel.
    The above procedure is working fine and I rules are successfully working.
    Now, first of all i want to know if the above mentioned approach is correct or it needs to be reframed??
    secondly, when i update datamodel with values (in java code itself) it
    takes 4-5 seconds in updating it. This is the main issue that why it is
    taking this much time??
    any comment would be of great help.
    Thanks in advance.

    I will send up an alert for you, Colin. Even though I use iTunes for Mac, troubleshooting it isn't my forté.

  • Compiling Apache 1.3.9 & PHP 3.0.12 to use Oracle 8.1.5 on SuSe 6.2

    Hi!
    I am trying to compile the above packets but am running into massive problems.
    PHP3 compiles well, if i try to use the "normal" static module for Apache, but the Apache configure script says that it needs an ANSI C compiler and stops.
    I am using GCC 2.7.2.3 with the bugfixes from SuSe.
    Since that did not work I tried the configuration as a Dynamic Module. The Apache "Readme.config" explains two ways to do so, but the first has the same problem with GCC and the second (via APXS) compiles Apache without problems, but PHP3 wont compile since it does not find a library. The exact error is: "/usr/i486-linux/bin/ld: cannot open -lclntsh: No such file or directory"
    I found a libclntsh.so.8.0 in the oracle/lib directory, but since i fumbled around with this library (i tried ln -s libclntsh.so.8.0 libclntsh.so) sqlplus says libclntsh.so.8.0: cannot find file data: no such file or directory (even now that the link is deleted again).
    And PHP still wont compile. Any ideas would be welcome.
    P.S.: Is it normal that Oracle has to be told NOT to create a database during install, TO create a database???
    We worked for 3 days on the Oracle installation and that was the only way to install Oracle without errors.
    thx
    Uwe Schurig

    Lee Bennett (guest) wrote:
    :Hi
    :I have successfully installed Oracle 8.1.5 Enterprise edition
    on
    :Suse 6.2 and applied the 8.1.5.0.1 patch set,
    NO!
    SuSe 6.2 have a patch file for Oracle made from their developers.
    Never use Oracle 8.1.5.0.1 patch file that doesn't work because
    us bugged.
    Use SuSe 6.2 Oracle patch set.
    (don't remember the web page where you can download it but a
    search with word "oracle" from SuSe homepage will lead you to
    it)
    -Stefano
    null

Maybe you are looking for

  • Mail crashes, no longer opens -- your thoughts?

    After only a few days of use, my iPhone's Mail app refused to open. I tapped the Mail icon, and it would open for an instant (without displaying my Inbox's contents), and then disappear, leaving me back at the Home screen. I tried deactivating the on

  • How to enable a disabled iPad?

    my brother entered the wrong password on my iPad and it got diabled and it says to connect to itunes. But the computer i have synced the ipad to is not working and i have no idea how to enable my iPad. Does anybody know what i can do for this?

  • Purchase Order & P-req's

    Hi All, Scenario - 1. Material 'A' is part of different Sub Assemblies (SA-1 & SA-2). 2. After MRP run a requirement was generated for material 'A' (referencing SA-1) & this Purchase Requistion was converted to PO. 3. Subsequently when in the PO crea

  • Data merge multiple recrds per page

    i am rying to place an illustrator file on an "in-design"page and have it print two up on one piece of paper with two seperate address then cut them apart to same money on my printer/contract all the proper choices are available - IT SEEMS  - but i c

  • Being asked to verify email address Phishing?

    Right after after i log in, I am being sent to a full screen that asks to verify my email address. As of yet ,I have not done this and have instead gone back to a google portal to access email without being verified. Is this a phishing ploy? How can