Rdb problam

please tell me how can I solve this problam.
I try to read and write on rdb database on VMS operating system from developer 2000. I can read and write through EXEC_SQL package but when open_connection open a session on system, the connection can't close with colse_connection because this function not closed the session actaully but only free the resource and memory. when the maximim number of session opened the program will stop with internal error the only thing I can close the session when I close the form, the session will close automaticly. if you know how can I close the session actaully please tell me or tell me another way to read or write on rdb.
thank you.

Thanks for the links.
Some of them I had already tried.
I downloaded /installed the MDAC to the latest, 2.8.
There was no change.
My Oracle RDB ODBC driver was relatively recent but I decided to refresh it anyway. TaDa!
I believe IIS and Oracle RDB SQL/Services do not quite agree about client connections. I still see executors being created on the server when I think existing one's should be free to do the execution,... but I am not completely hanging my web server, and web clients are getting some response (data).
I'll take it. I can tune the lifetime of executors.

Similar Messages

  • Oracle Rdb Driver 3.1.0.0 problem with blobs

    I am trying to convert an MsAccess application to use an MsAccess front end and an Oracle Rdb back end.
    I've created the test database under VMS and can successfully link to the Oracle Rdb tables from MSAccess 2000. One of the main reasons for converting to Oracle Rdb is to be able to store large word documents in the database. I was able to do that using Oracle rdb Driver v 3.00.02.06. I recently converted to Oracle Rdb Driver version 3.1.0.0 and can no longer access the Blob field containing the Word document. MsAccess now sees this field as type ‘Binary’ and I keep getting an ‘invalid field type’ error. (with 3.00.02.06 this field was seen by MsAccess as an ‘Ole Object’ and the getchunk and appendchunk functions for getting and saving a blob worked reasonably well).
    Is this a bug in 3.1.0.0 or is there some way to get MsAccess to recognize this Binary field type?

    I suspect you'll need to contact Oracle support on this. There aren't, to my knowledge, any RDB folks around here.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • OdbcDataAdapter.Fill() not getting all rows from RDB using 64bit driver

    I am using VS2012 Pro on Windows 7 (64-bit). I am migrating an older 32-bit VS2008 app to the new environment. I'm building for the .NET Framework 4.5.
    The app queries an RDB database and uses the Oracle RDB drivers version 3.3.2.0. When I build as a 32-bit app and use the 32-bit Oracle RDB Driver, the query succeeds and returns all 341 data rows. When I built it as 64-bit and use the 64-bit driver, I only
    get the first 101 rows.
    Oracle says the problem is in the OdbcDataAdapter.Fill() method. I was able to confirm this. I created an OdbcDataReader and used the debugger to see what was being read, I can see all 341 rows, but when I use the DataAdapter.Fill (or DataSet.Load) method,
    the results are truncated to 101 rows. Changing the SQL to query different tables does not change the problem. Below is a code sample:
            private DataSet runQuery()
                string connString32 = @"PROVIDER=MSDASQL;DRIVER={Oracle RDB Driver};SVR=myserver;DATABASE=ATTACH 'filename mydatabase';CLS=myclassname;uid=myusername;pwd=mypassword;xpt=2";
                string connString64 = @"PROVIDER=MSDASQL;DRIVER={Oracle RDB Driver 64 Bit};SVR=myserver;DATABASE=ATTACH 'filename mydatabase';CLS=myclassname;uid=myusername;pwd=mypassword;xpt=2";
                string sql = "SELECT person_id FROM person_tab";      
                DataSet ds = new DataSet();
                using (OdbcConnection conn = new OdbcConnection(connString64))  
                    OdbcCommand cmd = new OdbcCommand(sql, conn);
                    OdbcDataAdapter da = new OdbcDataAdapter();
                    da.SelectCommand = cmd;
                    conn.Open();
                    da.Fill(ds, "myDataSet");
                return ds;
    Has anyone else encountered this problem? If so, how did you get around it?

    Hello,
    Since I do not have the RDB database, I made a test with both 32bit and 64bit ODBC Driver 11 for SQL Server and query for 1000 records, however, both of them can work fine.
    As far as I know, the ODBC is just a component as a bridge to connect the driver and the application and since you are use the Oracle RDB driver, I suggest you posting it to the Oracle forum:
    https://community.oracle.com/community/developer/english
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Bug - Error when installing Oracle Rdb Extension (7.3)

    Hi, hope I come to he right place to fill a bug report.
    I'm getting an error message when trying to install the Oracle Rdb Extension (7.3).
    Steps:
    1. Download sqldeveloper 4
    2. Unpack/Start sqldeveloper
    3. Select from menu Help
         -> Check for updates...
         -> mark Oracle Extensions
         -> click next button
         ->  mark Oracle Rdb Extension
         -> click next button
         -> click finish button.
              -> At this point the error occures.
    Error message details:
    An error has occurred. Click Details for information that may be useful when diagnosing or reporting this problem.
    java.lang.StringIndexOutOfBoundsException: String index out of range: 82
      at java.lang.String.charAt(String.java:658)
      at java.util.regex.Matcher.appendReplacement(Matcher.java:762)
      at java.util.regex.Matcher.replaceAll(Matcher.java:906)
      at java.lang.String.replaceAll(String.java:2162)
      at oracle.ideimpl.webupdate.commandline.PreInstaller.replaceBundleInstallLocation(PreInstaller.java:239)
      at oracle.ideimpl.webupdate.commandline.PreInstaller.getDesitinationDirIDE(PreInstaller.java:281)
      at oracle.ideimpl.webupdate.commandline.PreInstaller.getDestinationDir(PreInstaller.java:250)
      at oracle.ideimpl.webupdate.commandline.PreInstaller.seedInstaller(PreInstaller.java:180)
      at oracle.ideimpl.webupdate.commandline.PreInstaller.commit(PreInstaller.java:120)
      at oracle.ideimpl.webupdate.wizard.UpdateWizard.commit(UpdateWizard.java:296)
      at oracle.ideimpl.webupdate.wizard.UpdateWizard.access$000(UpdateWizard.java:55)
      at oracle.ideimpl.webupdate.wizard.UpdateWizard$1.commit(UpdateWizard.java:245)
      at oracle.ide.wizard.FSMWizard.finishImpl(FSMWizard.java:902)
      at oracle.ide.wizard.FSMWizard._validateFSMState(FSMWizard.java:643)
      at oracle.ide.wizard.FSMWizard.doFinish(FSMWizard.java:351)
      at oracle.bali.ewt.wizard.BaseWizard$Action$1.run(BaseWizard.java:4029)
      at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
      at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:733)
      at java.awt.EventQueue.access$200(EventQueue.java:103)
      at java.awt.EventQueue$3.run(EventQueue.java:694)
      at java.awt.EventQueue$3.run(EventQueue.java:692)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:703)
      at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)
      at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)
      at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:154)
      at java.awt.WaitDispatchSupport$2.run(WaitDispatchSupport.java:182)
      at java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:221)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.awt.WaitDispatchSupport.enter(WaitDispatchSupport.java:219)
      at java.awt.Dialog.show(Dialog.java:1082)
      at java.awt.Component.show(Component.java:1651)
      at java.awt.Component.setVisible(Component.java:1603)
      at java.awt.Window.setVisible(Window.java:1014)
      at java.awt.Dialog.setVisible(Dialog.java:1005)
      at oracle.bali.ewt.wizard.WizardDialog.runDialog(WizardDialog.java:382)
      at oracle.bali.ewt.wizard.WizardDialog.runDialog(WizardDialog.java:298)
      at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:51)
      at oracle.ideimpl.webupdate.wizard.UpdateWizard.runWizard(UpdateWizard.java:261)
      at oracle.ideimpl.webupdate.WebUpdateController.checkForUpdates(WebUpdateController.java:24)
      at oracle.ideimpl.webupdate.WebUpdateController.handleEvent(WebUpdateController.java:31)
      at oracle.ideimpl.controller.MetaClassController.handleEvent(MetaClassController.java:53)
      at oracle.ide.controller.IdeAction$ControllerDelegatingController.handleEvent(IdeAction.java:1482)
      at oracle.ide.controller.IdeAction.performAction(IdeAction.java:663)
      at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:1153)
      at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:618)
      at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
      at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
      at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
      at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
      at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
      at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833)
      at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877)
      at java.awt.Component.processMouseEvent(Component.java:6505)
      at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)
      at java.awt.Component.processEvent(Component.java:6270)
      at java.awt.Container.processEvent(Container.java:2229)
      at java.awt.Component.dispatchEventImpl(Component.java:4861)
      at java.awt.Container.dispatchEventImpl(Container.java:2287)
      at java.awt.Component.dispatchEvent(Component.java:4687)
      at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
      at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
      at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
      at java.awt.Container.dispatchEventImpl(Container.java:2273)
      at java.awt.Window.dispatchEventImpl(Window.java:2719)
      at java.awt.Component.dispatchEvent(Component.java:4687)
      at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)
      at java.awt.EventQueue.access$200(EventQueue.java:103)
      at java.awt.EventQueue$3.run(EventQueue.java:694)
      at java.awt.EventQueue$3.run(EventQueue.java:692)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
      at java.awt.EventQueue$4.run(EventQueue.java:708)
      at java.awt.EventQueue$4.run(EventQueue.java:706)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)
      at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)
      at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)
      at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
      at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
      at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
    From Help->About
    About
    Oracle SQL Developer 4.0.0.13
    Version 4.0.0.13
    Build MAIN-13.80
    IDE Version: 12.1.3.0.41.131202.1730
    Product ID: oracle.sqldeveloper
    Product Version: 12.2.0.13.80
    Version
    Component Version
    ========= =======
    Oracle IDE 4.0.0.13.80
    Java(TM) Platform 1.7.0_45
    Extensions
    Name Identifier Version Status Registration Time Initialization Time Total Time
    ==== ========== ======= ====== ================= =================== ==========
    Integrated Development Environment (IDE) Platform Core oracle.ide 12.1.3.0.41.131202.1730 Fully Loaded 112ms 139ms 251ms
    Peek oracle.ideimpl.peek 12.1.3.0.41.131202.1730 Fully Loaded 3ms 49ms 52ms
    Code Editor oracle.ide.ceditor 12.1.3.0.41.131202.1730 Fully Loaded 19ms 57ms 76ms
    Persistent Storage oracle.ide.persistence 12.1.3.0.41.131202.1730 Fully Loaded 0ms 4ms 4ms
    File Change Monitor oracle.ide.file 12.1.3.0.41.131202.1730 Fully Loaded 0ms 5ms 5ms
    Web Browser and Proxy oracle.ide.webbrowser 12.1.3.0.41.131202.1730 Fully Loaded 2ms 14ms 16ms
    Indexing Service oracle.ide.indexing 12.1.3.0.41.131202.1730 Fully Loaded 1ms 2ms 3ms
    Property Inspector oracle.ide.inspector 12.1.3.0.41.131202.1730 Fully Loaded 10ms 14ms 24ms
    Markers oracle.ide.markers 12.1.3.0.41.131202.1730 Fully Loaded 1ms 0ms 1ms
    Audit Core Framework oracle.ide.audit 12.1.3.0.41.131202.1730 Fully Loaded 3ms 14ms 17ms
    Status and Background Audit oracle.ide.status 12.1.3.0.41.131202.1730 Fully Loaded 3ms 13ms 16ms
    IDE macros oracle.ide.macros 12.1.3.0.41.131202.1730 Fully Loaded 1ms 0ms 1ms
    Libraries oracle.ide.library 12.1.3.0.41.131202.1730 Fully Loaded 30ms 16ms 46ms
    Virtual File System oracle.ide.vfs 12.1.3.0.41.131202.1730 Fully Loaded 1ms 2ms 3ms
    Navigator oracle.ide.navigator 12.1.3.0.41.131202.1730 Fully Loaded 2ms 9ms 11ms
    Runner oracle.ide.runner 12.1.3.0.41.131202.1730 Fully Loaded 6ms 9ms 15ms
    External Tools oracle.ide.externaltools 12.1.3.0.41.131202.1730 Fully Loaded 3ms 3ms 6ms
    File Support oracle.ide.files 12.1.3.0.41.131202.1730 Fully Loaded 2ms 0ms 2ms
    Palette 2 oracle.ide.palette2 12.1.3.0.41.131202.1730 Fully Loaded 7ms 1ms 8ms
    Insight oracle.ide.insight 12.1.3.0.41.131202.1730 Fully Loaded 6ms 3ms 9ms
    Object Gallery oracle.ide.gallery 12.1.3.0.41.131202.1730 Fully Loaded 11ms 5ms 16ms
    Import/Export Support oracle.ide.importexport 12.1.3.0.41.131202.1730 Fully Loaded 2ms 0ms 2ms
    Technology oracle.jdeveloper.technology 12.1.3.0.41.131202.1730 Fully Loaded 5ms 2ms 7ms
    Extended IDE Platform oracle.jdeveloper.common 12.1.3.0.41.131202.1730 Fully Loaded 19ms 22ms 41ms
    JDeveloper Runner Core oracle.jdeveloper.runner.core 12.1.3.0.41.131202.1730 Fully Loaded 0ms 21ms 21ms
    JavaCore oracle.jdeveloper.java.core 12.1.3.0.41.131202.1730 Fully Loaded 18ms 29ms 47ms
    JDeveloper Runner oracle.jdeveloper.runner 12.1.3.0.41.131202.1730 Fully Loaded 12ms 115ms 127ms
    Code Editor Save Actions oracle.ide.ceditor-saveactions 12.1.3.0.41.131202.1730 Fully Loaded 2ms 3ms 5ms
    Oracle Deployment Core Module oracle.deploy.core 12.1.3.0.41.131202.1730 Fully Loaded 4ms 14ms 18ms
    Make and Rebuild oracle.jdeveloper.build 12.1.3.0.41.131202.1730 Fully Loaded 12ms 7ms 19ms
    PL/SQL Probe Debugger oracle.jdeveloper.db.debug.probe 12.1.3.0.41.131202.1730 Fully Loaded 0ms 0ms 0ms
    Database UI oracle.ide.db 12.1.3.0.41.131202.1730 Fully Loaded 18ms 53ms 71ms
    Database Connections oracle.jdeveloper.db.connection 12.1.3.0.41.131202.1730 Fully Loaded 5ms 28ms 33ms
    Database Object Explorers oracle.ide.db.explorer 12.1.3.0.41.131202.1730 Fully Loaded 0ms 12ms 12ms
    Compare API oracle.ide.compareapi 12.1.3.0.41.131202.1730 Fully Loaded 3ms 0ms 3ms
    Help System oracle.ide.help 12.1.3.0.41.131202.1730 Fully Loaded 8ms 4ms 12ms
    Local History oracle.ide.localhistory 12.1.3.0.41.131202.1730 Fully Loaded 0ms 133ms 133ms
    History Support oracle.jdeveloper.history 12.1.3.0.41.131202.1730 Fully Loaded 8ms 21ms 29ms
    Check For Updates oracle.ide.webupdate 12.1.3.0.41.131202.1730 Fully Loaded 3ms 2ms 5ms
    Core Database Development oracle.sqldeveloper 12.2.0.13.80 Fully Loaded 45ms 437ms 482ms
    SQL Worksheet oracle.sqldeveloper.worksheet 12.2.0.13.80 Fully Loaded 10ms 24ms 34ms
    Database Reports oracle.sqldeveloper.report 12.2.0.13.80 Fully Loaded 3ms 12ms 15ms
    Oracle SQL Developer Data Modeler - Reports oracle.sqldeveloper.datamodeler_reports 12.2.0.13.80 Fully Loaded 0ms 0ms 0ms
    Replace With oracle.ide.replace 12.1.3.0.41.131202.1730 Triggers Loaded 1ms 0ms 1ms
    JViews Registration Addin oracle.diagram.registration 12.1.3.0.41.131202.1730 Triggers Loaded 0ms 0ms 0ms
    Log Window oracle.ide.log 12.1.3.0.41.131202.1730 Fully Loaded 1ms 0ms 1ms
    Oracle SQL Developer - File Navigator oracle.sqldeveloper.filenavigator 12.2.0.13.80 Triggers Loaded 4ms 0ms 4ms
    Oracle SQL Developer - Migrations T-SQL Translator oracle.sqldeveloper.migration.translation.core 12.2.0.13.80 Fully Loaded 0ms 0ms 0ms
    Oracle SQL Developer - Extras oracle.sqldeveloper.extras 12.2.0.13.80 Fully Loaded 2ms 65ms 67ms
    Third Party Database Development oracle.sqldeveloper.thirdparty.browsers 12.2.0.13.80 Fully Loaded 0ms 8ms 8ms
    Oracle SQL Developer - Migrations Core oracle.sqldeveloper.migration 12.2.0.13.80 Fully Loaded 8ms 67ms 75ms
    Oracle SQL Developer - Migrations MySQL oracle.sqldeveloper.migration.mysql 12.2.0.13.80 Triggers Loaded 0ms 0ms 0ms
    TimesTen Integration oracle.ide.db.timesten 12.1.3.0.41.131202.1730 Fully Loaded 0ms 0ms 0ms
    Help Oracle Start Page oracle.ide.helpstartpage 12.1.3.0.41.131202.1730 Fully Loaded 3ms 0ms 3ms
    Versioning Support oracle.ide.vcscore 12.1.3.0.41.131202.1730 Triggers Loaded 2ms 0ms 2ms
    Patch Support oracle.jdeveloper.patch 12.1.3.0.41.131202.1730 Triggers Loaded 3ms 0ms 3ms
    IDE Thumbnail oracle.ide.thumbnail 12.1.3.0.41.131202.1730 Triggers Loaded 1ms 0ms 1ms
    VHV oracle.ide.vhv 12.1.3.0.41.131202.1730 Triggers Loaded 0ms 0ms 0ms
    QuickDiff oracle.ide.quickdiff 12.1.3.0.41.131202.1730 Triggers Loaded 0ms 0ms 0ms
    Versioning Support oracle.jdeveloper.vcs 12.1.3.0.41.131202.1730 Triggers Loaded 1ms 0ms 1ms
    Oracle SQL Developer - Migrations MySQL SQL Translator oracle.sqldeveloper.migration.translation.mysql_translator 12.2.0.13.80 Triggers Loaded 0ms 0ms 0ms
    Oracle SQL Developer - Security oracle.sqldeveloper.security 12.2.0.13.80 Triggers Loaded 0ms 0ms 0ms
    Component Palette oracle.ide.palette1 12.1.3.0.41.131202.1730 Fully Loaded 7ms 0ms 7ms
    Oracle SQL Developer - Unit Test oracle.sqldeveloper.unit_test 12.2.0.13.80 Triggers Loaded 4ms 0ms 4ms
    Oracle SQL Developer - Migrations Application Migration oracle.sqldeveloper.migration.application 12.2.0.13.80 Triggers Loaded 1ms 0ms 1ms
    Oracle SQL Developer - Migrations PostgreSQL oracle.sqldeveloper.migration.postgresql 12.2.0.13.80 Triggers Loaded 0ms 0ms 0ms
    Code Editor Find oracle.ide.ceditor-find 12.1.3.0.41.131202.1730 Fully Loaded 2ms 0ms 2ms
    Oracle SQL Developer - RESTful Services Administration oracle.sqldeveloper.rest 12.2.0.13.80 Triggers Loaded 2ms 0ms 2ms
    Oracle SQL Developer - Change Mangement oracle.sqldeveloper.em_cm 12.2.0.13.80 Fully Loaded 2ms 5ms 7ms
    Versioning Support for Subversion oracle.jdeveloper.subversion 12.1.3.0.41.131202.1730 Triggers Loaded 4ms 0ms 4ms
    Oracle SQL Developer - Migrations Translation UI oracle.sqldeveloper.migration.translation.gui 12.2.0.13.80 Triggers Loaded 1ms 0ms 1ms
    Oracle SQL Developer Data Modeler oracle.datamodeler 4.0.0.833 Triggers Loaded 29ms 0ms 29ms
    Oracle SQL Developer - Migrations DB2 Translator oracle.sqldeveloper.migration.translation.db2 12.2.0.13.80 Triggers Loaded 0ms 0ms 0ms
    Oracle SQL Developer - Migrations Microsoft SQL Server oracle.sqldeveloper.migration.sqlserver 12.2.0.13.80 Triggers Loaded 0ms 0ms 0ms
    Oracle SQL Developer - Migrations Teradata SQL Translator oracle.sqldeveloper.migration.translation.teradata 12.2.0.13.80 Triggers Loaded 0ms 0ms 0ms
    Oracle SQL Developer - Real Time SQL Monitoring oracle.sqldeveloper.sqlmonitor 12.2.0.13.80 Triggers Loaded 3ms 0ms 3ms
    Oracle SQL Developer - Database Cart oracle.sqldeveloper.dbcart 12.2.0.13.80 Triggers Loaded 1ms 0ms 1ms
    Bookmarks oracle.ide.bookmarks 12.1.3.0.41.131202.1730 Fully Loaded 6ms 4ms 10ms
    Code Editor Tint oracle.ide.ceditor-tint 12.1.3.0.41.131202.1730 Fully Loaded 2ms 0ms 2ms
    Oracle SQL Developer - DBA Navigator oracle.sqldeveloper.dbanavigator 12.2.0.13.80 Fully Loaded 3ms 108ms 111ms
    Oracle SQL Developer - TimesTen oracle.sqldeveloper.timesten 12.2.0.13.80 Fully Loaded 1ms 38ms 39ms
    Protocol Handler Classpath oracle.jdeveloper.classpath 12.1.3.0.41.131202.1730 Fully Loaded 1ms 0ms 1ms
    BM Share oracle.bm.jdukshare 12.1.3.0.41.131202.1730 Triggers Loaded 0ms 0ms 0ms
    MOF XMI oracle.mof.xmi 12.1.3.0.41.131202.1730 Triggers Loaded 0ms 0ms 0ms
    Database Snippets oracle.sqldeveloper.snippet 12.2.0.13.80 Fully Loaded 0ms 7ms 7ms
    Usage Tracking oracle.ide.usages-tracking 12.1.3.0.41.131202.1730 Fully Loaded 0ms 1ms 1ms
    ToDo Tasks Markers oracle.jdeveloper.markers.todo 12.1.3.0.41.131202.1730 Fully Loaded 1ms 0ms 1ms
    Versioning Support for Git oracle.jdeveloper.git 12.1.3.0.41.131202.1730 Triggers Loaded 4ms 0ms 4ms
    Oracle SQL Developer - Migrations Teradata oracle.sqldeveloper.migration.teradata 12.2.0.13.80 Triggers Loaded 1ms 0ms 1ms
    Searchbar oracle.ide.searchbar 12.1.3.0.41.131202.1730 Fully Loaded 2ms 0ms 2ms
    (Name Unavailable) oracle.sqldeveloper.tuning 12.2.0.13.80 Triggers Loaded 3ms 0ms 3ms
    Dependency Tracking oracle.ide.dependency 12.1.3.0.41.131202.1730 Fully Loaded 0ms 0ms 0ms
    Code Style oracle.jdeveloper.style 12.1.3.0.41.131202.1730 Fully Loaded 3ms 12ms 15ms
    XML Editing Framework oracle.ide.xmlef 12.1.3.0.41.131202.1730 Fully Loaded 18ms 55ms 73ms
    Mac OS X Adapter oracle.ideimpl.apple 12.1.3.0.41.131202.1730 Fully Loaded 0ms 0ms 0ms
    Diagram Framework oracle.diagram 12.1.3.0.41.131202.1730 Triggers Loaded 4ms 0ms 4ms
    OLAP oracle.olap 12.2.0.13.80 Fully Loaded 10ms 324ms 334ms
    Database UI Extras oracle.jdeveloper.db.extras 12.1.3.0.41.131202.1730 Triggers Loaded 0ms 0ms 0ms
    Oracle SQL Developer - Migrations Sybase Adaptive Server oracle.sqldeveloper.migration.sybase 12.2.0.13.80 Triggers Loaded 0ms 0ms 0ms
    Oracle SQL Developer - Migrations Microsoft Access oracle.sqldeveloper.migration.msaccess 12.2.0.13.80 Triggers Loaded 0ms 0ms 0ms
    Database XML Schema oracle.sqldeveloper.xmlschema 12.2.0.13.80 Fully Loaded 0ms 0ms 0ms
    Oracle SQL Developer - APEX Listener Administration oracle.sqldeveloper.listener 12.2.0.13.80 Triggers Loaded 3ms 0ms 3ms
    Oracle SQL Developer - Scheduler oracle.sqldeveloper.scheduler 12.2.0.13.80 Fully Loaded 0ms 134ms 134ms
    Oracle SQL Developer - Spatial oracle.sqldeveloper.spatial 12.2.0.13.80 Triggers Loaded 2ms 0ms 2ms
    Oracle SQL Developer - Schema Browser oracle.sqldeveloper.schemabrowser 12.2.0.13.80 Triggers Loaded 1ms 0ms 1ms
    Code Editor Bookmarks oracle.ide.ceditor-bookmarks 12.1.3.0.41.131202.1730 Fully Loaded 0ms 7ms 7ms
    Oracle SQL Developer - Migrations DB2 oracle.sqldeveloper.migration.db2 12.2.0.13.80 Triggers Loaded 0ms 0ms 0ms
    Data Miner oracle.dmt.dataminer 12.2.0.13.80 Triggers Loaded 12ms 0ms 12ms
    Print System oracle.ide.print 12.1.3.0.41.131202.1730 Triggers Loaded 2ms 0ms 2ms

    I'm getting an error message when trying to install the Oracle Rdb Extension (7.3).
    I'm not sure if that extension has been upgraded for sql developer 4. Extensions written for previous versions won't work in sql developer 4 - they need to be modified to support the OSGI framework.
    Leave the thread open until one of the sql developer team members can answer this.
    Here is the note from the sql developer exchange home page
    http://www.oracle.com/technetwork/developer-tools/sql-developer/extensions-083825.html
    Special Note Regarding Extensions Developed Prior to SQL Developer
    v4.0:
    With the new release of SQL
    Developer 4.0, an extension that was written for a previous version of SQL
    Developer will no longer work. SQL Developer is built on the JDeveloper
    Framework. We have updated the framework to be current with the JDeveloper 12c
    release. With JDeveloper 11gR2, they switched to an OSGI framework. The JDeveloper team has published instructions for updating your extensions to be compatible with
    the new framework and SQL Developer v4.0.
    The Check for Updates interface
    has been updated to hide any 3rd party extensions to avoid confusion with
    extensions not loading. Once you have updated your extension for version 4 and
    beyond, let us know, and we'll update the system to make it available again. For
    questions regarding the process of going from the old to new framework, we have
    started a dedicated
    thread on the Forums. You can also email the Product Manager, Jeff Smith, to
    setup a call with one of our developers for additional assistance.
    As that note says if that extension is NOT for version 4 it shouldn't show up on the list of updates.

  • Problame connecting iphone to pc and charging

    hello,
    I have been having a hard time connecting my iphone to the pc or the wall ac plug.
    when I plug it in, some of the time the icon changes and the device charges normaly, some of the times i get a worning that the iphone cannot be charged when "this device" (ie the charger) is connected, and most of the time, nothing happens when i plug it in.
    I have contacted the chat support service, he sugested that I should backup and restore.
    I did back up using icloud HOWEVER since I can't connect the iphone to the pc, I CANT RESTORE IT.
    As I wrote befor, when i plug it in, nothnig happends and the iphone doesnt show on my Itunes.
    And one more thing, when i plug the device, though it doesn't connect, it seems like there is some degree of charging,
    I mean, if it is pluged in all night, i may reach the 80%.
    please help.
    here is a tanscrtipt of out chat:
    Sunday,  June 9, 2013  09:35 PM
    Duration: 0 seconds
    Lee:
    Hello, My name is Lee! Welcome to AppleCare Support! Please give me a few moments to look over your information. Please note: In the event that our chat is disconnected due to a system/connection issue, I'll email you your case number, so you can chat or call us back, and we can pick up where we left off!
    Izik:
    hello..
    Lee:
    Hello Izik, how are you doing today?
    Izik:
    i'm doing well.. thanks.. you?
    Lee:
    Good to hear that you're doing alright! I'm great, thanks for asking! From what I can see here in the pre-chat notes you provided, it looks like you're needing assistance with the battery for your device. Is this correct?
    Izik:
    i'm trying to charge my iphone, and it wouln't make a connection..
    Izik:
    the problame started after i updated the ios
    Izik:
    sometimes when i restart it, it connects.. sometimes it works after i unplug it and plug it back a few times
    Lee:
    I'm very sorry to hear that you're having issues with charging and connecting your device but I definitely want to do everything within my power to try and get everything working for you! Is this ok?
    Izik:
    sure
    Izik:
    what do you think couses the problem?
    Lee:
    I would like to check a few things to see if there's anything obvious causing the issue. If I don't see anything out of the ordinary, we may want to move ahead and either reset some settings on the device or backup the device and restore the software, which is very easy. We will definitely check everything out first, is this ok?
    Izik:
    oh and when it is pluged.. it gets charged super slow.. like all night long to charge to 80% but the icon doesn't change
    Izik:
    yeah i'm with you
    Lee:
    Lets first take a look at the issue with connecting to the computer. Could I have you connect your phone to your computer for me please?
    Izik:
    it is pluged in but doesn't connect
    Izik:
    sometimes it does.. sometime it doesn't.. now it wouln't connect
    Lee:
    Could I please have you try a different USB port on the computer to see if it connects?
    Izik:
    ok..
    Izik:
    still the same
    Izik:
    and it's a port that works for sure
    Lee:
    Thanks for that information Izik.
    Lee:
    I'm going to have you check to see what version of iTunes you have on your computer. Do you see options like File, Edit and View towards the top of your iTunes window?
    Izik:
    wait i'll start that itunes
    Izik:
    i see a list of song that i downloaded a year ago
    Lee:
    Do you see options like File, Edit and View towards the top of your iTunes window on your computer?
    Izik:
    no i dont...
    Izik:
    there is an icon in the top corner
    Lee:
    Thanks for that info. Is the icon in the top-left corner and does it look like a black and white box?
    Izik:
    when i click on it.. i have the options "new, library, itunes store,, etc
    Lee:
    Could I have you click on the arrow on the right of the black and white box and choose Show Menu Bar?
    Izik:
    oh ok.. now i see it
    Izik:
    it was hiden
    Lee:
    Great!
    Izik:
    what do you want me to do?
    Lee:
    Now if I could have you click on Help at the top and About iTunes. There should be a windows that scrolls up and says if you have iTunes 10 or iTunes 11.
    Izik:
    11.02
    Izik:
    11.0.2.26
    Lee:
    Thanks for that Izik. Sounds like iTunes should be able to recognize the phone then.
    Izik:
    since we began to chat, i charged 1%
    Izik:
    but still doesn't connect
    Lee:
    Do you know if you have any security software installed on your computer?
    Izik:
    i dont think so
    Izik:
    i'm prety sure i dont
    Lee:
    Excellent job of troubleshooting so far Izik.
    Lee:
    Since you have already done a great job so far, our next steps would be to backup and restore the device as new using iTunes. Have you ever restored a device using iTunes before?
    Izik:
    the last time i treid it faild to backup and erased half of my phonebook
    Lee:
    I understand your concerns Izik. Are you familiar with how to share your contacts with iCloud?
    Izik:
    i am new to icloud
    Izik:
    i didnt have it on my last IOS
    Lee:
    That's ok. Would you be interested in sharing your contacts with iCloud?
    Izik:
    sure.. just tell me how
    Lee:
    Perfect. Could I have you press the Home button to go back to your Home screen with your app icons, go into your Settings and then select iCloud?
    Izik:
    ok... and then?
    Izik:
    backup and storege?
    Lee:
    Does iCloud show that you're signed in with an Apple ID and do you have on and off switches?
    Izik:
    yes
    Lee:
    Is the Contacts switch turned on?
    Izik:
    yes
    Lee:
    What is your Apple ID email address that you're signed into iCloud with?
    Izik:
    it's [email protected]
    Lee:
    How many contacts do you believe you have on your phone?
    Izik:
    about 200 i think
    Lee:
    So I'm seeing that many contacts on iCloud so we should be good. Would you now be comfortable with backing up and restoring your phone using the computer?
    Izik:
    ok yeah
    Lee:
    Good! Izik, I would like to share some articles with you so we can make sure all of our bases are covered. Could you please right-click on the following links and "Open In New Window" so we don't get disconnected from this chat? Here are the following articles: How to back up, Restoring iOS Software. Let me know if you can view these articles ok.
    Izik:
    i opend them
    Lee:
    Super! We'll want to first start with the How to back up article under the section iTunes: How to back up.
    Izik:
    ok i allready did that.. i backed it up
    Lee:
    Ok, so now we'll want to start the restore process.
    Izik:
    oh wait... it is backing up now
    Lee:
    Sure, I can wait.
    Izik:
    it looks like it's gonna take a while
    Izik:
    does it also back up photos? cuz if it does, it'll take a lot of time
    Lee:
    Yes it also backs up photos. So do you feel comfortable with with going through the steps in the provided articles on your own?
    Izik:
    i dont know if it is related but i keep loosing rec
    eption
    Lee:
    Reception should not be related with charging and battery issues.
    Izik:
    it goes from 0-3 bars
    Izik:
    oh.. ok.. then
    Izik:
    what do i do if after restoring, the problem doesn't get solved?
    Lee:
    If restoring doesn't resolve the issue then you can chat back in with the case number 454055082 and we can help assist further.
    Lee:
    Here is the game plan we should follow with the restore: Go ahead and let the device finish the restore. If it asks at any point to restore from a backup, please select no. We want to make sure it gets restored like a brand new device out of the box. Once the device is restored, you can follow the setup screens on the device to set it up like the first time you used it.
    Lee:
    Don't restore from any backup or put any content on the device just yet. Once the device is set up, I would like for you to test it to see if the issue persists.
    Izik:
    there is one problem
    Izik:
    the 1st step is to connect the iphone to the pc
    Izik:
    2nd step is to select it once it apears on i tunes.. but that doesn't happend
    Lee:
    Do you have a button in the top-right corner of the iTunes window on the computer that says iPhone?
    Izik:
    i feel kind'a silly but no
    Izik:
    i have "search library", itunes store
    Lee:
    Could I have you click on View at the top and select the Show Sidebar option?
    Izik:
    ok...
    Lee:
    Is the phone showing up on the left sidebar under Devices?
    Izik:
    i see music, movies, TV shows, apps, itunes store, home sharing, genius that's it no devices
    Lee:
    Could I please have you unplug your phone and plug it back in?
    Izik:
    nothing happend
    Izik:
    it wouln't connect to the pc
    Izik:
    nor to the plug on the wall
    Lee:
    Could I have you try plugging the phone into a different USB port?
    Lee:
    On the computer?
    Izik:
    we allready tried that... it doesn't work in any port..
    Izik:
    but i tried it anyway just now...
    Lee:
    Could I have you try restarting the phone to see if you're able to get it to connect?
    Izik:
    should i finish backing up first?
    Izik:
    for the last 10 min's it is stuck on "14 mins to finish"
    Lee:
    Yes you should wait for the phone to finish backing up before you try anything else. If the phone is currently backing up then that means it's connected.
    Izik:
    i thought that it backs up on the internet
    Izik:
    and not on the pc
    Lee:
    Are you currently backing up through iCloud and your WIFI or are you connected to the computer and used the iTunes steps to back up?
    Izik:
    im backing up with icould an wifi
    Izik:
    trying to back up*
    Izik:
    i dont understand this, not it says 17 min lest to finish
    Izik:
    now*
    Lee:
    So the backup may have shortened to only being 17 minutes. Once the backup is done then we'll need to follow the steps on restoring using iTunes on a computer.
    Lee:
    If we have any issues with restoring then we may need to try some other options and steps. Did you want to chat back in when you're done backing up and are ready to restore?
    Izik:
    sure.. ok but the problame remains.. it doesn't connect to the pc
    Izik:
    therefor i have no way to restore it with i tunes
    Lee:
    There are some other steps we can try with connecting to the PC like forcing the device into recovery mode
    Izik:
    oh.. ok..
    Izik:
    so.. do you want to come back after i finish backing up? or would i continue with someone else?
    Lee:
    You would probably continue with someone else but I'll be leaving notes in our case.
    Izik:
    ok then...
    Lee:
    Did you have any other questions or concerns, or was there anything else you needed from me before we go? You are my number one priority, so I want to make sure everything is satisfactory before we end this chat.
    Izik:
    everything's good, you have been very kind and helpfull.
    have a good morning/day/night
    Lee:
    Izik, it was a pleasure working with you today. I hope that you're satisfied with the support I've provided. If you have a few seconds, please answer the 5 short questions that will pop up when you click "end chat" in the top left corner. I hope you have a great rest of your day! Regards,  Lee B. iOS Tech Advisor Apple, Inc.

    got that once a reboot and it was fine again

  • While posting  through MIGO accounting problam

    hai guys,
    while posting normal NB type p.o through MIGO ,iam getting error message  saying as" period 12/2006is not possible for account type S and G/L  400000"
    i have checked period of closing through MMPV,MMRV,OMSY.
    every thing is allowing , but iam getting error.
    can pls give me what might be the problam.
    thank u.

    Hi
    This is related to FI module.
    First you check what is variant assigned to your company code in OBBP transaction.
    Then go to OB52 transaction and check for particular variant Accounting type S, change period to current.
    regards
    Srinivas

  • Oracle RDB driver – Version 3.01.00.01 Connectivity Issue

    I have a SQL Server 2000 extended stored procedure connecting to an Oracle RDB data server via an ODBC connection (using Oracle RDB driver – Version 3.01.00.01). The SQL Server 2000 runs on a Windows 2000 Server.
    This extended stored procedure opens up multiple database connections and maintains them for processing. Usually, everything runs fine.
    However, every so often, we have connectivity issues. What happens is as follows:
    When we bring a station down and then try to reconnnect, our connection is denied, and we get the error: "recv() unexpected close Ret 0 Err#0 UNKNOWN Unknown WINSOCK Error 0". (This error is logged by the .dll running in the SQL Server processing space.) From the first time we receive a connectivity error like this until the Oracle RDB box is rebooted, we cannot establish another new ODBC connection to that Oracle RDB box --- whether we are trying to establish it programmatically or just via a "test connection" in the ODBC dialogue on the SQL Server box.
    We can, however, establish an ODBC connection to another, identically configured, Oracle RDB box from the SQL Server box (without restarting the SQL Server box).
    Has anyone had experience with instable connections from Windows system using the Oracle RDB driver to connect to the Oracle RDB? If not, can anyone point me in a direction that would help me research this? I am more familiar with SQL Server than Oracle, and the Oracle DBA on the other end isn't very accessible.
    I'd really appreciate any help anyone can give me.
    Thanks!

    I got same error.. Are you already solve that problem? how? please help me. Thanks

  • Oracle RDB Driver fails with JDBC/ODBC Bridge

    Has anyone experienced problems using the latest Oracle RDB
    Driver (3.0.2.0) with the JDBC/ODBC Bridge.
    We have been using the Oracle ODBC Driver for RDB (2.10.17)
    successfully on NT, but it is not supported on W2K. The new
    drivers work fine for Access etc., but fail with the bridge.
    Specifically, you can step thru a result set, but getObject()
    returns null for all fields.
    Any suggestions?
    Joe

    This forum is for general suggestions and feedback about the OTN
    site. For technical question about an Oracle product, you can
    select the appropriate discussion forum in our 'Discussions'
    section at: http://forums.oracle.com/forums/homepage.jsp
    Best regards, OTN Team

  • Odbc rdb driver v3.1.0.3 not able to download

    hi, I've been trying to download the odbc driver rdb v3.1.0.3 from the oracle site - it downloads the zip file but can't open it with winzip - gets an "old archive file try downloading again" - any one have any ideas? or where I can download from another site? Thanks in advance!!

    the file may be broken.
    check the size of the zip file, if it is too small, it may be not download successfully.
    download if again!
    Sam

  • Oracle Rdb Driver 3.1.0.0 problem

    I am trying to convert an MsAccess application to use an MsAccess front end and an Oracle Rdb back end.
    I've created the test database under VMS and can successfully link to the Oracle Rdb tables from MSAccess 2000. One of the main reasons for converting to Oracle Rdb is to be able to store large word documents in the database. I was able to do that using Oracle rdb Driver v 3.00.02.06. I recently converted to Oracle Rdb Driver version 3.1.0.0 and can no longer access the Blob field containing the Word document. MsAccess now sees this field as type ‘Binary’ and I keep getting an ‘invalid field type’ error. (with 3.00.02.06 this field was seen by MsAccess as an ‘Ole Object’ and the getchunk and appendchunk functions for getting and saving a blob worked reasonably well).
    Is this a bug in 3.1.0.0 or is there some way to get MsAccess to recognize this Binary field type?

    I suspect you'll need to contact Oracle support on this. There aren't, to my knowledge, any RDB folks around here.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Differences between Oracle and Oracle Rdb.

    My background is mainly VMS, and so I have grown up (since 1984) with DEC Rdb (now Oracle Rdb). I am starting to get into Oracle, and therefore, starting to learn the subtle differences. With this in mind could someone educate me as to the default transaction type when using SQLPLUS (using interactive SQL it's READ WRITE). What is the initialization file called for SQLPLUS, and are there equivalents to the logical names SQLINI, SQL$DATABASE, SQL$EDIT, etc.
    If there is someone out there with experience of both, may be you could ease my pain by posting your pearls of wisdom, or tips, here to help me along the way.

    OK, I'll try a few, having moved from VAX/Rdb to Oracle 10 years ago.
    Oracle's default transaction state is read-write, isolation level READ COMITTED. This means you generally don't need to do a "SET TRANSACTION" at the start of a transaction, and certainly don't need to keep doing commit;set transaction to see the latest values.
    In read-write transactions Oracle does not lock rows on read to maintain consistency in the way Rdb used to. Usually people use SELECT ... FOR UPDATE, or update directly (without a separate select) rather than using isolation SERIALIZABLE, which is the equivalent of Rdb's default.
    A script login.sql is executed at the start of a SQLPLUS session. On Unix, it looks for this in the current directory, and the home directory.
    On UNIX, SQL$DATABASE becomes "export TWO_TASK=dbname"
    On Windows, SQL$DATABASE becomes "set LOCAL=dbname"
    I strongly recommend Tom Kyte's Expert one-on-one Oracle book to help your transition, and his web site asktom.oracle.com
    Good luck, and welcome.

  • Oracle ODBC driver for Rdb

    Where is the download???????

    You probably want to contact Oracle support for that. I don't recall ever seeing RDB-related downloads on OTN.
    Justin

  • Oracle Rdb JDBC: Insufficient global memory

    Environment:
    IA64 OpenVMS 8.3
    Java RTE version 1.5
    Oracle RDB version 7.2-2
    SQL/services version 7.3
    JDBC server for RDB version 7.3
    JDBC-Thin driver version 7.3
    The problem:
    we have a JDBC dispatcher with 20 executor processes.
    We have a client application that performs connect/disconnect to the database before/after each sql select statement.
    Sometimes the query doesn't terminate successfully and we get the following error in
    the JDBC log file:
    RDB$CLIENT_ID_0000038D C00000000*T 201010-21 12:19:13.409 : [email protected] msg : INIT_V713 send>>>>>>>>>>>>> System Error : Insufficient global memory
    any help?

    I would start with RDB administration/configuration documents. It's a DBMS server issue,
    not JDBC. Though it may or may not help, in principal, if yo can keep and re-use connections
    instead of repeatedly opening and closing, it is usually faster and less burdensome on the DBMS...

  • Nokia music activation problam

    I have problam for nokia music activation problam.so please help me nd send my phone voucher code..

    Subodhtamang wrote:
    Hello moderator, i will tell u my exact problem. I had bought 620 in march the day when it was launched, at first i thought the phone was fine and i didn't check it. The same night when i was at home then i thought of inserting memory card but it was not being able to read it, i tried many times but it was not solved. I contacted the priority from where i had bought 620, they also tried but were unsuccessful and i told them would u give me another set, but they told me to contact nokia care. I went to care and my new 620,1 day old, had to be sent to factory for troubleshooting. After 1 week,my phone had arrived and it was working good. But whenever i tried to download music from nokia music i started to get error messages' saying ACTIVATION PROBLEM, this phone is already registered with nokia unlimited music subscription. Update was also available and i thought it would work after updating it. But the error is still persisting. I tried resetting the phone but still its of no use, went to care too but the one who is supposed to look after this problem is always absent. So this is my detail problem. And ya when i go to nokia music and login and see the details about my account they show me my subscription ends on October 14. I also thought purchasing nokia music voucher would do but i just wasted my 57 bucks. It was of no use.
    Just to clarify your concern, you haven't logged in yet before sending the phone for repair. You have sent the phone for repair due to the memory card issue. Is that correct? The issue happens after you received your phone. Is that right? Also, haven't you tried signing in your Nokia account with other Nokia devices?

  • Connect to Oracle Rdb Using Enterprise Manager

    How can I create a connection to an Rdb Database using the Enterprise Manager or by editing tnsnames.ora? What is the correct syntax for the tns entries?

    Download and install 9i client for Linux (you will need linux_base package for linux compatibility).
    Following links may help you:
    http://ezine.daemonnews.org/200402/oracle.html
    http://tomclegg.net/oracle9i-bsd5
    http://www.freebsd.org.ru/software/linux-oracle.html
    Then install php with "--with-oci8=$ORACLE_HOME" option.

Maybe you are looking for

  • IPOD NOT BEING RECONIZED OR BEING CHARGED

    i have a ipod shuffle and i left it on overnight and then tried to charge it. before this it wasn't being reconized and now it won't show it or charge. HELP!!!!! Windows   Windows XP   ipod shuffle

  • How to Create LInearGradient in pdf

    I am creatting Pdf From EMF.A lineargradient From EMf to pdf Convertion i cannot find the lineargradient type which is horizontal or Vertical

  • Can't install Flash CS3!

    Hey! I've got a MacBook (about a year old), and when i'm trying to install adobe flash cs3 i get 2 errors, the installation completes but "Adobe Flash CS3 and Adobe Asset Services CS3" failed to install.. I've tried with the free trial and the full v

  • CS5 issue - Text not keeping Vector format when saving as PDF

    Hi everybody, I am very frustrated right now. I am working in PS CS5 in Windows, and I cannot get the text to keep the raster format where it's cleaner / clearer, and can be highlighted, searched for, etc. What's really puzzling is that it will work

  • Can I upgrade from cs5.5 to cs6?

    I don't want to shift to a subscription model. I have CS5.5 for PC. Can I upgrade to CS6 (options have disappeared on the website) ?