Best provider to user for asp classic to oracle 10g?

can someone recommend the best data provider to use with an asp classic application and oracle 10g? something where there is good documentation?
thanks in advance.

Hi,
I'd go with the Oracle provider for OLEDB.
http://www.oracle.com/technology/tech/windows/ole_db/index.html
cheers,
Greg

Similar Messages

  • Will Edge include support for color coding for ASP Classic .asp files

    We have some old sites running asp Classic (Active server Pages)
    How can I add color coding for .asp files?

    Edge Code should already highlight .asp files as plain HTML.  If you're looking for highlighting of the ASP-specific code, that is something Edge Code does not plan to support out of the box.
    It is possible to write an extension that adds this support, but it would not be a small amount of work -- you'd have to write a tokenizer yourself to support syntax highlighting, for example.  Details on writing an extension that adds a new language can be found here: https://github.com/adobe/brackets/wiki/Language-Support#defining-a-new-language
    - Peter

  • Study material for the 1Z0-042 Oracle 10g exam

    What is the best book to purhcase for the OCA 10g exam.. I've read some not got reviews about the Sybex OCA book
    http://www.amazon.co.uk/OCA-Oracle-Administration-Study-1Z0-042/dp/0782143679/ref=sr_1_1/026-0307472-6450854?ie=UTF8&s=books&qid=1185865079&sr=8-1
    and some outstanding ones for the Osborne book
    http://www.amazon.co.uk/Oracle-Database-Certification-Guide-Osborne/dp/0072257903/ref=pd_bbs_1/026-0307472-6450854?ie=UTF8&s=books&qid=1185865135&sr=8-1
    Whats your thoughts ?

    Those are regular references to certification exams study material. But I suggest you to use the Oracle guides found at the official Certification guide, this will be useful to identify the specific topics you have to be focused on. Then install your 10gR2 database and read through reference manuals and practice, practice, and practice. Most of the material for certification is theoretical oriented, instead of practical oriented.
    ~ Madrid.

  • Appropriate size for Autoextending datafile in oracle 10g

    Hi,
    I am using Oracle 10g 10.2.0.3.0 on linux 64 bit with 16GB RAM, one thing i want to find out that i have my schema datafile, which set on autoextend, i have set next size to 100mb, if the file reaches to its full does it make us wait for long to create a place of 100mb or should i reduce the size from 100mb to 10mb.
    What should be the appropriate Next size in Autoextend for oracle database in my case, if there is a performance problem like login delay in schema due to increasing in size of datafile then how do i find out because i do not have database diagnostic tools.
    Because today there was a delay in login to the schema and EM was showing wait, but i could not find out that why the wait was there, when i check the datafile size it was 1203 MB , i thought it may be due to the extension of data file but how do i confirm this thing.
    In the table DBA_ADVISOR_FINDINGS it is giving following problem
    Problem PL/SQL execution consumed significant database time.
    Symptom Wait class "Network" was consuming significant database time.
    Problem Wait event "TCP Socket (KGAS)" in wait class "Network" was consuming significant database time.

    Slow connect is not related with datafile extension.
    Regarding Wait event "TCP Socket (KGAS)"
    Please read Metalink note 416451.1
    How fast is tnsping to database, ping to database server?

  • Required setting for Locale values for Arabic db in oracle 10g

    I want to create a new db in Oracle 10g for storing the arabic data.
    My client machine is Arabic Windows XP.
    What are the steps that i will need to follow to make the db arabic supported.
    What streps will be required if i choose to make it unicode supported?
    Setting the following:-
    1. Set Database Character Set to AL32UTF8 for the Oracle Server.
    2. Set the NLS_LANG to ARABIC_LIBYA.UTF8 (on Arabic Windows xp)
    Will do the work?

    The database character set should be AL32UTF8 for Unicode support. This is a recommended setting.
    As far as NLS_LANG is concerned, this strongly depends on how your client application is written (what technology, which Oracle access API). For example, for SQL*Plus, the NLS_LANG must be set to AR8MSWIN1256, as SQL*Plus does not support Unicode on Windows, only the ANSI code page. For SQL Developer, the NLS_LANG does not matter at all.
    -- Sergiusz

  • Problem while inserting data for some datatypes in Oracle 10g

    Hi
    I was trying to insert data in database for all the data types defined in Oracle 10g.
    I was successful in maximum cases.
    I was not able to insert data for following datatypes:
    1 Long varraw
    2 string
    3 varraw
    4 varnum
    5 charz
    6 unsigned int
    7 native double
    8 native float
    Please put some light on it.
    Thanks,
    Gyanendra

    Hi Subin,
    You can try couple of things.
    If your data is less than 32767, you can pass it to stored procedure and change it to clob type like
    PROCEDURE CLOBQUERY
         Param     IN     CLOB,
    and you can call Procedure
    EXECUTE CLOBQUERY '[Param.1]'
    If your data is around than 1000000(32767*32), you can break the data in length of 32767 and pass it to param 1 to 32 like
    EXECUTE CLOBQUERY '[Param.1][Param.2][Param.3]..[Param.32]'
    Finally you can try to update jdbc drive.
    check the link Link: [JDBC Limitation|http://confluence.atlassian.com/display/JIRA/UsingOracle10gdriverstosolvethe4000character+limitation]

  • User Connections getting increase in Oracle 10g database

    Hi All,
    we have a java application setup in Websphere 6.0 server with Oracle 10g as a back end database.
    Our application server is load balanced by two seperate server.
    We found that there are more number of inactive connections getting established to database from application server.
    Those connections keep on increasing automatically though we closed all the session created through application.
    Is there any specific reason behind this. Currently we are killing those sessions manually.
    Kindly help me in resolving this issue.
    Thanks in advance.
    Regards
    Aruna

    The main reason for this is products like Websphere are stateless, and establish a connection for every statement, execute the statement and close the connection.
    Refrain from setting up connection pooling, either in Websphere or at the database site, and you will keep seeing this.
    As such it is not a database problem. It is a problem of developers who don't know connection pooling.
    Sybrand Bakker
    Senior Oracle DBA
    Experts: those who did read documentation.

  • Email parameter for message part in oracle 10g

    hi..
    i m sending email using oracle 10g form , using desname , desformat , subject ,from
    it working successfully now i hv to add message body in that email like
    Dear Sir,
    Please find attachment.
    Thanks & Regards
    ABC
    there is destype ,desname ,desformat ,subject ,from in built parameter to set subject , from , to , format to send email , but i want to write message part is there any parameter in oracle 10g ??
    Thanks..

    Is your problem that you do not know how to send an email from Oracle 10g? If so then you use the UTL_MAIL package.
    Here's an example of calling it as part of a scheduler chain, not strictly what you're asking for but this lets you define success and failure steps and call each one based on the status of previous steps.
    BEGIN
    DBMS_SCHEDULER.CREATE_PROGRAM (
       program_name           =>'prg_Export_Success',
       program_type           =>'PLSQL_BLOCK',
       program_action         =>q'[BEGIN
                                    UTL_MAIL.SEND (
                                       sender      => 'who_its_from',
                                       recipients  => '[email protected]',
                                       subject     => 'subject line',
                                       message     => 'the message',
                                       mime_type   => 'text/plain; charset=us-ascii');
                                    END;]',
       number_of_arguments      => 0,
       enabled                  => TRUE,
       comments                 => 'Email success');
    end;
    BEGIN
    DBMS_SCHEDULER.DEFINE_CHAIN_STEP (
       chain_name      =>  'Export',
       step_name       =>  'stp_EXPORT_SUCCESS',
       program_name    =>  'PRG_EXPORT_SUCCESS');
    END;
    /... then define appropriate rules.

  • Best quality audio option for Ipod classic

    Hello to everyone, I got a 160 Ipod classic as a present and I dont have previous experience. I am choosing the best way to import the CD collection and came to this 3 choices, after doing some research in the web
    -AAC at 320. I have a trained ear and think I can tell the difference with 256, the difference in storage is not that big
    -AIFF. I not really counting on this becasuse the files are big and I guess I colud onlu get around 400 CDs on 150 GB
    -Apple lossless. I have read the quality is similar to Aiff and they dont take a lot of space.
    What do you guys think is the best option for this 160 gb model? quality is important for me. I think the choice is AAC at 320 or Apple lossless, But Apple lossless is still almost double size files than the 320 AAc, so I dont know
    Thanks a lot and best regards
    Message was edited by: maltess

    There is no definite answer for this, your hearing is unique to you.
    The best thing to do is choose a few songs and put them on your iPod in all the different formats you are considering. Then listen to the same song in the different formats and see whether if like the lower bit rate version or if you must have the higher bit rate version.
    Personally, I use (good quality) Bose on-ear headphones, a Bose speaker dock and a Klipsch speaker dock. Most of my songs are in 192kbps AAC, some are 256kbps and I don't hear the difference. But then, my age means that my hearing is no longer as acute as it was.
    Since you have a 160GB iPod, if you have the room (that is, not too many songs), use the higher bit rate. I began using the higher bit rate when I realised I had the room.
    Phil

  • Unix permission problem for external table in oracle 10g, sun solaris

    Hello All,
    I'm facing a problem in accessing external table which has stumped me a bit.
    What I'm looking for is to use a external table with restricted permission to Others(770) on unix.
    Would appreciate if someone helps me out here.
    Here are the steps:
    1.create directory ext_tab_dir1 as '/home/ravi/test'
    2.grant read,write on directory ext_tab_dir1 to scott
    3.CREATE TABLE scott.emp_load1(employee_number CHAR(5))
    ORGANIZATION EXTERNAL (
    type oracle_loader
    default directory ext_tab_dir1
    access parameters (
    records delimited by newline
    fields terminated by ' '
    optionally enclosed by '"'
    missing field values are null
    location ('info.dat')
    Now I have added unix user oracle to unix group myDbGroup and provided myDbGroup read/write/exec permission on directory /home/ravi/test.
    info.dat has been placed in /home/ravi/test.
    #pwd
    /home/ravi
    #ls -l
    drwxrwx--- 2 ravi myDbGroup 512 Mar 7 17:35 test
    I have manually logged in as user oracle and successfully created a sample file in /home/ravi/test.
    -rwxrwx--- 1 ravi myDbGroup 13 Mar 7 17:33 info.dat
    -rw-r--r-- 1 oracle oinstall 0 Mar 7 18:05 sampleFile
    I then connect to the db using sqlplus as ravi and do a
    #select * from scott.emp_load1
    I get the following error
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04063: unable to open log file emp_load1_18567.log
    OS error Permission denied
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    After this, I gave full permission to /home/ravi/test
    drwxrwxrwx 2 ravi myDbGroup 512 Mar 7 17:35 test
    #select * from scott.emp_load1
    And this was successful.
    It created a log file in /home/ravi/test
    -rwxrwx--- 1 ravi myDbGroup 13 Mar 7 17:33 info.dat
    -rw-r--r-- 1 oracle oinstall 0 Mar 7 18:05 sampleFile
    -rw-r--r-- 1 oracle oinstall 0 Mar 7 18:05 emp_load1_18567.log
    Now what stumped me is the owner and group owner of the file emp_load1_18567.log.
    It is same as the sampleFile which I created manually!!
    From this it can be deducted oracle is not using user id oracle while reading/writing to the unix directory but somehow assigning user id oracle as owner to the log file at the end.
    If someone has encountered this problem earlier or has some info about this...pls share.
    Regards,
    Ravinandan

    Thanks for the reply.
    I have earlier checked this with NOLOGFILE option.
    But no luck.
    I would like to add one more detail(which I missed earlier) about the problem.
    If I give 750 access to /home/ravi(That is read/exec to Group and none perm to Others),
    I will get the same error(KUP-04063: unable to open log file emp_load1_18567.log).
    This obviously means oracle is not even able to access the directory(Although unix user oracle has access via the group perms).

  • Migrating users in sql server to oracle 10g

    migrating users from sqlserver to oracle10g
    what are the setps to follow for migrating users in sqlserver to oracle10g
    also
    please let me know the migration of roles and privelage in sqlserver into oracle10g
    meaning
    these are roles in sqlserver
    public
    db_owner
    db_accessadmin
    db_securityadmin
    db_ddladmin
    db_backupoperator
    db_datareader
    db_datawriter
    db_denydatareader
    db_denydatawriter
    what are equivalent role and priv in oracle

    Hi,
    We can't directly and exactly map the roles but I have mapped to similar roles below.
    In Oracle, the access mechanisms work like this:
    A user with create table privilege can create any number of tables in his own schema. He may have some quota on tablespaces, the amount of data he can use for all his tables together in that tablespace and he becomes the dbowner for his schema and schema objects.
    He can grant select, insert, update and delete privileges to any user he like.. the user who got the privileges is called a "grantee". A grantee can again grant the privileges that he received to others, provided he has been granted with "with grant option".
    A pseudo user called public, is only a place holder to say ALL ... if you grant some privileges to PUBLIC, then everyone in the database will have that privileges.
    A user with EXP_FULL_DATABASE will be able to backup the full database.
    Please refer to oracle documentation for complete details.
    public - PUBLIC
    db_owner - SCHEMA USER him self
    db_accessadmin - SCHEMA USER himself
    db_securityadmin - SCHEMA USER himself
    db_ddladmin - SCHEMA USER himself
    db_backupoperator - a role EXP_FULL_DATABASE
    db_datareader - any user who has select previliges
    db_datawriter - any user who has select, insert , update and insert privileges
    db_denydatareader - any user who do NOT have select priviliges
    db_denydatawriter - any user who do NOT have insert , update and delete privileges
    HTH
    Regards,
    Badri.

  • Error while instaling the MEP server for Single tier, using Oracle 10g DB

    createDatabaseTables:
    getAppServer:
    ============================================================
    Sun Java System Mobile Enterprise Platform
    ============================================================
    checkAppServer:
    defaultDomainExists:
    checkDefaultDomain:
    Found "domain1", do you want to delete it? [y/n]
    y
    shouldDeleteDefaultDomain:
    deleteDefaultDomain:
    The domain (domain1) isn't running.
    Domain domain1 deleted.
    setup:
    getDomainProperties:
    Enter the name for the new Application Server domain (default: mep)
    mep
    Enter the Admin Port for the new domain [mep] (default: 4848)
    Enter the HTTP Port for the new domain [mep] (default: 8080)
    Enter the HTTPS Port for the new domain [mep] (default: 8181)
    Enter the admin password for the new domain (default: adminpass)
    remoba123
    installGateway:
    init:
    getDomainProperties:
    createDomain:
    Using port 4848 for Admin.
    Using port 8080 for HTTP Instance.
    Using default port 7676 for JMS.
    Using default port 3700 for IIOP.
    Using default port 8181 for HTTP_SSL.
    Using default port 3820 for IIOP_SSL.
    Using default port 3920 for IIOP_MUTUALAUTH.
    Using default port 8686 for JMX_ADMIN.
    Domain being created with profile:developer, as specified by variable AS_ADMIN_P
    ROFILE in configuration file.
    Security Store uses: JKS
    Domain mep created.
    startDomain:
    Attempting to start domain...
    Waiting for domain to finish initializing
    Waiting for status to be: mep running
    init:
    configureDomain:
    Copying files to installation directory ...
    Copying 53 files to F:\Sun\AppServer\domains\mep\ds
    Copying 101 files to F:\Sun\AppServer\domains\mep\lib
    Copying 1 file to F:\Sun\AppServer\domains\mep\lib
    Copying 1 file to F:\Sun\AppServer\domains\mep\lib
    Copying 1 file to F:\Sun\AppServer\domains\mep\lib
    Copying 1 file to F:\Sun\AppServer\domains\mep\lib\classes\META-INF
    init:
    copyOracleJar:
    Copying 1 file to F:\Sun\AppServer\domains\mep\lib\ext
    Copying 1 file to F:\Sun\AppServer\domains\mep\lib\ext
    server.java-config.classpath-suffix = F:\Sun\AppServer/domains/mep/ds/skin/user/
    messages/i18n;F:\Sun\AppServer/domains/mep/ds/skin/admin/messages/i18n
    Command create-jvm-options executed successfully.
    Command create-jvm-options executed successfully.
    Command create-jvm-options executed successfully.
    Command create-jvm-options executed successfully.
    Command create-jvm-options executed successfully.
    Command create-jvm-options executed successfully.
    Command create-jms-resource executed successfully.
    Command create-jmsdest executed successfully.
    Command create-jms-resource executed successfully.
    configure:
    configureMySQL:
    configureOracle:
    Command create-jdbc-connection-pool executed successfully.
    Command create-jdbc-connection-pool executed successfully.
    server.resources.jdbc-connection-pool.musicdb_jdbc_pool_oracle.match-connections
    = true
    configureRealm:
    Command create-jdbc-resource executed successfully.
    Command create-jdbc-resource executed successfully.
    Command create-auth-realm executed successfully.
    deployEAR:
    stopDomain:
    Domain mep stopped.
    startDomain:
    Attempting to start domain...
    Waiting for domain to finish initializing
    Waiting for status to be: mep running
    Still waiting for status to be: mep running
    Command deploy executed successfully with following warning messages: WARNING:
    JDO76611: Cannot connect to database via JNDI name 'jdbc/gw': java.sql.SQLExcept
    ion: Connection could not be allocated because: ORA-01017: invalid username/pass
    word; logon denied.
    installJCAconnectors:
    stopDomain:
    Domain mep stopped.
    Aug 22, 2008 8:22:55 PM com.sun.jbi.installer.JBICoreInstaller main
    INFO: OpenESB JBI Core Components successfully installed in F:\Sun\AppServer\jbi

    The error suggests that the oracle gwdb database was incorrectly created with the wrong username and password for the database. The installation expects the gwdb database to be created with the username of "gwdbuser" and password of "gwdbpass". I would check the login credentials for this database. Also the installation expects the musicdb database to be created with the username of "musicdbuser" and password "musicdbpass". You may want to check this as well.
    JDO76611: Cannot connect to database via JNDI name 'jdbc/gw': java.sql.SQLExcept
    ion: Connection could not be allocated because: ORA-01017: invalid username/pass
    word; logon denied.
    Alan Frechette
    Sun MEP SQA Engineer

  • Recovering user name and password in Oracle 10g

    Hi
    Longback I installed oracle databse 10g on my windows xp box. Now I can't remember the user name and password to log in to the database using the Database control login page. The only thing I did at that time is activation of scott account. I am able to connect to databse with scott/tiger in SQL*plus. So how to I recover the username and password here. Any help please
    Regards
    Srinivas

    Hi
    Thanks a lot for your reply. I am new to Oracle.What I need here is how to Log in to the database from "Oracle database control" Login page. I forgot the user name and password. I think I need to select the SYSDBA option in that page. Just curious to know how to recover the username and password for SYSdba. When I try to log using scott and tiger it is saying that I don't have sufficient admin privileges to login. Is reinstall the only way out to get the user ID and passowrd.
    Regards
    Srinivas

  • User on Mac, Server with Oracle 10g Database on Windows

    What can we do to help a user with a Mac access the database??
    And, as a second question, would that user be able to later install/use Developer Suite tools?

    You need to install 10g client on his MAC
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10204macsoft.html
    I am not very updated about the Developer suite but based on this link
    http://www.oracle.com/technology/software/products/ids/index.html
    There is no Dev suite available for MAC; only JDeveloper is there.

  • Oracle recommended location for archive logs in  oracle 10g rac

    Hello All,
    We would like to know the oracle recommended location for the archive logs in oracle10g RAC .we are using ASM.
    Thanks...

    user4487322 wrote:
    thanks. Is it the recommended setting ,if we go for a DR setup?I mean archive logs in ASM.If you can use dataguard, the archivelog copy to the standby system would be handled by Oracle and it supports ASM.
    Just remember, what ever your strategy, the archivelogs must be in a SHARED location (where all nodes can read/write to this location.)

Maybe you are looking for

  • E71 Firmware Update Fixes

    Just wanted some input in regards to what issues need to be resolved within the first update, excluding the RF reception, I think we all want that fixed ASAP... I have never heard of reception issues being fixed from a firmware issue, but maybe they

  • How to access iCloud documents on your mac.

    I struggled with this for days and finally found a simple solution. Here's one way: http://www.youtube.com/watch?v=YrmZbTZwoeA&feature=player_embedded Here's another. Thanks to http://osxdaily.com/2012/08/09/how-to-access-icloud-documents-from-the-ma

  • SAP HR FLOW

    Hi,   I need SAP-HR flow, if any one know help me

  • JVM wars - MS vs. Sun

    When I test my plug-in at http://www.java.com/en/download/help/testvm.xml, it shows I'm using ver. 1.1.4 of the MS JVM. I've followed the instructions to upgrade by downloading the newest JRE 1.5.4, and checking the box in the IE Advanced Tab. Then t

  • I can't play music bought in iTunes after iPod turn off

    I need help!!!! After I installed iTunes 7.0.1 I cannot play songs I bought, after the iPod turns off (not used for a two or three days). I have to re-sync in order to play the songs on the iPod again. Any clues? IPod Mini   Windows XP Pro