GUI Client

Does the instant client for linux have this GUI based SQL*Plus? like the one with windows?

You could use Oracle SQL Developer. However, this also requires JDK 1.5 being installed from Sun.

Similar Messages

  • GUI Client for Oracle 8.1.5 on R.H. Linux!

    Hello all,
    I have had Oracle 8.1.5 on my Red hat Linux 6.2 server for a while now. Everything works great but I would like to know if this version of Oracle comes with a GUI client that will allow me to view tables, make changes, drop tables and such through (basically a GUI administrative tool) GUI interface as opposed to the regular command line I have been using.
    If there isnt one, anyone know of a free third party software that will enable me do these tasks with a GUI client.
    Thanks, All!

    I have such a thing it is called Orasoft.
    It is some kind of GPL software that is easy to compile and works like a charm (make sure you have enough ram).
    I don't know where I got it but I'm sure you can find it it in a search engine.

  • Cannot connect a Java GUI client to an EJB

    I am having problems trying to make a Java GUI client connect to an EJB. I am using JRun4.
    At first, I tried making the Java GUI client a part of the enterprise application that I am building (of which the EJB is a part of). I included the client as a Java module in the application.xml of the enterprise application.
    However, when I try to start the server, containing this application, I get an error saying:
    Application authentication required. Incorrect method call.
    Now when I try to execute the application from the console, it works fine except when it comes to the part when it has to connect to the EJB. At this point I get an java.lang.reflect.UndeclaredThrowableException. Here's the stack trace:
    java.lang.reflect.UndeclaredThrowableException
    at $Proxy1.create(Unknown Source)
    at mds.Caller.actionPerformed(Caller.java:135)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: jrun.ejb.invocation.ContainerNotFoundException: The EJB container for boss-ejb#Boss could not be found.
    at jrun.ejb.invocation.AbstractInvocationProxy.findContainer(AbstractInvocationProxy.java:58)
    at jrun.ejb.invocation.LocalInvocationProxyImpl.invoke(LocalInvocationProxyImpl.java:53)
    at jrun.ejb.invocation.ClientInvocationHandlerImpl.invoke(ClientInvocationHandlerImpl.java:198)
    ... 25 more
    Since the bean is local, I am using a local reference to the bean in the lookup in the code of the client:
    Object o = context.lookup("local/BeanTest")
    I tried to use:
    Object o = context.lookup("java:comp/env/ejb/BeanTest")
    and added an ejb-local-ref in the application-client.xml file of the client. But when I try executing the client in this case, I get an error saying:
    No such binding: ejb
    I wish someone can help me out with this. My main aim is to get the app client talk to the EJB. Thanks a lot in advance.
    Soham

    I am not sure of a tool to view the JNDI tree. I have one in Weblogic console. But you can check the JNDI names with a small sample code.
    import java.util.*;
    import javax.naming.*;
    import javax.rmi.PortableRemoteObject;
    public class TestEnvironment {
        public static void main(String[] args) {
            Context context   = null;
            Object object     = null;
            // Hashtable for environment properties.
            Hashtable env = new Hashtable();
            env.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
            env.put(Context.PROVIDER_URL, "t3://localhost:7001");
            try {
                context   = new InitialContext(env);
                NamingEnumeration enum = context.listBindings("");
                while (enum.hasMore()) {
                    Binding binding = (Binding) enum.next();
                    System.out.println("Name: " + binding.getName());
                    System.out.println("Type: " + binding.getClassName());
                    System.out.println("Value: " + binding.getObject());
            } catch (Exception exception) {
                exception.printStackTrace();
    }Hope this helps.

  • Calling SAP GUI Client from a Java Webdynpro app.

    Hello experts,
    We would like to call the SAP GUI client from a java WebDynpro application running without portal or ITS. Can it be done by having a web link, with mime registration in internet explorer to kick off the SAP GUI ? (similar behavior with a SAP favorite link saved on the desktop).
    many Thanks.

    Hi,
    Webdynpro possibilities:
    1. You can try to use LinkToUrl.
    with reference to file://<exefile> or your weblink with the mime type (possibly some java coding can be required; I can try to help).
    2. other option is to use IFrame and you can use either href to your exe or weblink
    Web Explorers:
    1. IE: It should work. if you point to exe file popup window will be displayed asking for action (run, save, cance).
    2. Firefox: the only way I know to make it work is to modify nsHelperAppDlg.js file (if you need Firefox I can tell you how to modify the file).
    Kind Regards, Jack

  • J2EE GUI client login

    Hi:
    I wrote a GUI client for a EJB running on SJSAS7. It works fine. Now I would like to put some security on it. How do I let users login? Do I create a JAAS module or just set up the security restrictions on the EJB's methods?
    Sam

    Thanks. This is important piece of the puzzle. I got some more question about this. On the server development guide says:
    custom realms must extend com.sun.enterprise.security.auth.login.PasswordLoginModule class. This class extends javax.security.auth.spi.LoginModule. Custom realms must not extend the JAAS loginModule directly
    Now here comes the question. The JAAS login module suppose to obtain the user's password and user name in login() Since you don't extend login module, how do you obtain user name and password? Does that mean the only way to pass user name and password to login module is by appclient script? Thanks
    Sam

  • Support of multiple GUI clients

    Hi,
    Currently, we have an application which partially supports multiple
    GUI clients. When a GUI first launches, it will pop up a dialog box
    to select "Read" or "Read/Write" access mode. Once "Read/Write"
    is selected, others can only select "Read" mode until "Read/Write" mode is released. There is a timer to automatically release the mode, if "Read/Write" is holding up for too long.
    Now., we have to fully support multiple clients. The "Read" and "Read/
    Write" modes have to be removed. That means, mutliple clients can
    send update requests at the same time. Does anyone have ideas how
    to support multiple clients? Is there any "models" out there where
    I can based on to support it?
    Thanks,
    Pin

    Mark, we came out with 8.1.7.4.0 precisely for the reasons you have stated. There is no longer a Windows NT Oracle Service For MTS per database. The logic to enlist Oracle connections in MTS transactions, and the logic to subsequently commit/abort these transactions is fully contained within the middle-tier dlls i.e. ORAMTS.DLL. This removes the single point-of-failure in pre 8.1.7.4.0 versions, and also makes the solution more scalable.

  • Please suggest best GUI client for Linux setup?

    HI,
    I need to setup OBIEE 11g on Linux. Please suggest best GUI client to connect to linux and setup OBIEE.
    appreacite for your help.
    Thanks
    Jay.

    Hi Jay,
    You can use Xming server for linux. I have downloaded Xming server 6.9.0.31. It worked well with Windows XP(32 bit) as well as Windows 7(32 bit). I have used it for Oracle HTTP Server installation and OBIEE 11g installation
    After installing, to start Xming go to command prompt and start. This invokes the Xming application properly when compared to double click starting.Go to cmd. Go to location C:\Program Files\Xming Enter this
    Xming.exe :0 -clipboard -multiwindow -ac.
    Note: colon zero ended up in a smiley!
    You will see Xming popup in your right side. Go to putty session and export your display with this command.
    export DISPLAY=172.45.62.143:0.0
    Replace the ip address with your system ip address. The above one is example.
    Note: If your putty session is in client network, use the ip address that is in Ethernet: client server.
    Test if display is exported properly with this clock command which gives a GUI popup of clock.
    xclock &
    Hope this helps.
    Regards,
    Amrutha.
    Edited by: Amrutha Kalidindi on Jul 29, 2012 2:48 PM

  • Installation of different versions of GUI clients on same machine

    Hi All,
    Is there any document about how to install different versions of MDM GUI clients on same Machine.
    we have different version of MDM server in Sandbox and Developement environment. I know we can install different versions of GUI Clients by specifying different locations. But i am looking for some standard document / SAP note. Please if anyone has this information, it will be very helpful.
    Thanks and Regards,
    Shiv

    Hi Shiv,
    You can find this information regarding different Version of GUI Clients on same machine from Standard SAP Installation Guide on Page 51
    5.1 Maintaining Multiple Versions of MDM it tells that you can install multiple versions of MDM 5.5 on one host and switch between the versions.This may be useful, for example, when updating the patch level.
    Please refer to SAP Installtion guide,
    https://websmp201.sap-ag.de/~sapidb/011000358700001119842007E
    Also Check SAP Note: 1283687
    Best Regards,
    Mandeep Saini

  • Socket write in GUI Client

    I have a GUI Swing client that is communicating with a Server with Sockets.
    Currently, when a message needs to be sent ( Socket.write ), I am just passing the message to my thread-safe sendMessage() method.
    I have an application currently calling this from the Event Thread without issue, but I have heard that this could create a possible dead-lock, but I haven't been able to pinpoint the reasoning behind this.
    What pitfalls occur if this method, which writes to the Socket's OutputStream directly, is called from the GUI Event Thread?
    Thanks in Advance.

    Thank you all for the input.
    I think what I will do is dispatch a new Thread to do the sendMessage if it is invoked from within the GUI Event Thread.
    Which would be better? Create a new anonymous thread or use SwingUtilities.invokeLater ?
    1)
         void actionPerformed( ActionEvent e )
                 new Thread( new Runnable() { void run() { sendMessage(data); } } ).start();
         }2)
         void actionPerformed( ActionEvent e )
                 SwingUtilities.invokeLater( new Runnable() { void run() { sendMessage(data); } } );
         }

  • GUI Client OPSYS/ ENV

    Does anyone have a quick and easy way of determining the GUI operating system of a connected client or perhaps getting the entire environment settings for the GUI workstation from an ABAP program?
    TH_* function modules appears to give more server-side information - I could not find useful info off-hand.
    WEBGUI clients, etc obviously not relevant in this context...
    Also - where can I find a list of all C modules in the kernel that can give useful info in this regard?  (E.g ThUsrInfo's companions).
    I live in a wall-to-wall Microsoft environment...

    Hi,
    use class CL_GUI_FRONTEND_SERVICES
    or fm GUI_GET_DESKTOP_INFO
    Andreas

  • Is OEM (gui client-server) gone in 11g client?

    Hi,
    I installed 11g client (administrator) in my PC. I can not find the DB console which is available in 10g.
    Is it deprecated?
    thanks

    Hello,
    Is there a simplier version of grid control? that can be intalled in my laptop only? and no need to alter the prod servers? In fact, you have 2 kind of "Oracle Enterprise Manager":
    - *1.* OEM Database Control (also called DB Console).
    - *2.* OEM Grid Control.
    These 2 tools are mutually exclusive, you have to choose which one you prefer to use for monitoring the Databases.
    The 1st one ( Database Control ) can be configured easily when you create the Database with DBCA or, you can configure it later by using EMCA. It's rather easy, afterwards you have no Client to instal, just an URL to know and a supported Web Browser.
    The Database Control has a Repository on the Database (Schema SYSMAN) and uses some specific Directories on the Server side.
    With the Database Control you can manage only one Database (i.e. you'll need one DB Console for each Database).
    You'll find here a link about Database Control:
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17120/dbcontrol001.htm#ADMIN13402
    The 2nd one ( Grid Control ) is a complete Application. You'll need a Server (with enough memory and disk) in which you'll create a specific Database for the Repository. You'll have to install the Web Logic layer, and Oracle Management Service ( OMS ). Eventually you'll have the Grid Control which is a true Application Server.
    Afterwards, you'll have to install and deploy the Oracle Agent to each of your Servers so as to monitore all the Databases (the Targets).
    It's a powerful tool, which can let you manage the Databases, the Servers and the Applications (even non-Oracle Application). But this is true it's not a simple installation.
    However, you don't have any client side to install. From your Laptop, you'll have just to know the URL and have a supported Browser.
    You'll find here some link about the installation of the Grid Control (11gR1):
    http://www.oracle.com/technetwork/oem/grid-control/overview/index.html
    http://www.oracle-base.com/articles/11g/GridControl11gR1InstallationOnOEL5.php
    I personnally like the following image:
    http://download.oracle.com/docs/cd/E11857_01/install.111/e16847/firewalls.htm#i1005951
    NB: The URL is given at the end of the installation in both case.
    Hope this help.
    Best regards,
    Jean-Valentin

  • Thin GUI client possible?

    I'm new to RMI but I've spent the better part of the day trying to figure it out.
    I've been assigned the task of modifying existing code that uses a fat client to access an XML database running on a server.
    The client has a Swing interface that dynamically displays different panes depending on menu selections. My question is:
    Is it possible to put all those panes on the server, and use RMI to get them when required, so that it is not necessary for each client to have their own copy? If so, can anyone offer me some hints on how to do this? Can I have a method in my client like:
    private ??? switchPanel(string panelname)
    and get the server to send me a new Panel to display?
    If anyone understands what I'm talking about, I'd appreciate some help! Thanks!

    No -- you cannot put the panes on the server and pass them back.
    However, you can pass the data that fills the panes through RMI.
    Create a class the implements Serializable with the Strings, int, long, etc fields needed on each pane.
    When the Client wants info, pass the request to the Server. The Server fills in the fields for this class and returns the class to the Client. The Client then populates the pane.

  • Telnet GUI client giving problems for one userid.

    Hi,
    I have written a GUI program to get userid and password to connect to a Telnet session. The purpose of the program is just to check if the user is a valid user and start another application if the user is a valid user. This application works well and is installed for manay users at my work place. But, this program doesn't work well only for one user. That user tried to use this program by changing is password. He tried to login using this GUI in other terminals. Only this user is having problems logging in in any terminal. But, he is able to open a telnet session without any problems if he doesn't use the GUI. I tried to print the characters that are returned by the server. But, it prints all the characters without any problem. The application hangs at the point, when it has to read the $ prompt after logging in. I also, checked if this user has been set with any other properties for his userid than other users. But, he is having the same privelages like all other users.
    Any help in fixing this problem is appreciated.
    Thanks in advance.

    You need to be more specific about what your program does, for us to suggest some troubleshooting techniques.
    One possibility:
    Your program takes the user's id and password, and if it can authenticate the user, it launches the telnet program (at which point, your user needs to authenticate himself again at telnet's login prompt. In other words, your program provides access to telnet.
    If that is the case, then your user may have changed his password on the remote host, but neglected to change his password on the GUI. I doubt this is the case, but the point I wanted to make is perhaps your GUI is having problems authenticating the user.
    Check to make sure the string the user typed matches the string you have on file. (See below for more on this.)
    The other possibility is:
    Your GUI takes the user's id and password, launches a telnet session, and tries to log in the user via proxy. If it works, the telnet session
    is returned back to the user. If it fails, an appropriate error message is returned. Your program is essentially a front end to telnet.
    If that is the case, then you're likely to have a problem transmitting the password string. Perhaps the user's new password has a character Java and telnet interpret differently.
    First thing to check is literally have your GUI output the string to the telnet session. Don't ask the user to type it in, just ask him what it is. If the password is "fido" (hypothetically), then have your GUI do the equivalent of out.write( "fido" );
    If it bombs, you know you can't transmit that particular string, and the short term solution is to change the password again. If it works, have the user type in the password, but instead of sending it to telnet, just system.out.println( inputtedPassword ); instead. See if Java does any unintentional formatting when reading it in.
    In other words, treat input and output as two seperate cases, and test accordingly.
    When you think about it, that particular password is the key. In fact, if you told us what the password is (don't tell us who you are or where you're connecting from), some Java Guru might see it and say "Oh, you can't do a double backslash like that!"
    Anyways, I'm sure you've solved the problem, I just posted this explaination for the benefit of others who are curious about how to troubleshoot something like this.

  • UCCX gui client for Win7

    I've tried searching through this forum and the Cisco site and I'm at a bit of a loss.  We are starting to roll out Win7 clients to our users but I'm not at a point where I can upgrade our voce systems to 8.x.  I've heard that their is a web interface to IPCC for those users that receive new computers that have Win7 installed but I am not able to find what this is called or how it is setup to allow these connections.  Does this actually exist in IPCC 7.0(1) and if so can someone point me to a link that helps with telling me how to set this up.
    Thank you in advance
    Matt

    for the CDA web interface by default the username is admin with no password.
    Once you log in you can change the password, there should be a link near the
    top right hand of the screen.
    Regarding the browser edition, unfortunately I cannot give you much
    assistance here as that is one of the few things I haven't had the pleasure
    of configuring on UCCX.
    The following is specifically for CME however, you can ignore that aspect
    and focus on the CADBE portion:
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_8_0/user/guide/cbe80ccxug-cme.pdf
    Good luck!
    On Tue, May 24, 2011 at 4:51 PM, [email protected] <

  • SAP GUI 730 PL8 Installation Problems

    Hi all!
    We are facing a problem with the following software product:
    Information NwSapSetupAdmin.exe:
    SAP GUI for Windows 7.30 (Compilation 3)
    Component ID: 1460620d-c8bc-44c2-86ec-e632e0986b01
    Version: 27625
    Latest Patch Level: 8
    SAP Automatic Workstation Update
    Component ID: 40d11884-3906-4e67-8a96-91035ca09814
    Version: 900.42
    Latest Patch Level: 45 Version 9.0.45.0
    Information SAP Logon:
    Release: 730 Final Release
    Dateiversion: 7300.3.8.1084
    Build: 1478436
    Patch-Level: 8
    Within the SAP GUI Installation (NwSapSetup.log) the following error occurs:
    16:25:13 NwSapsAtlC  1   Executing script action...
    16:25:13 NwSapsAtlC  1   Script-action: Checking reboot condition.
    16:25:13 NwSapsAtlC  1   Script-action: NwEngine.Context.Reboot = 1
    16:25:13 NwSapsAtlC  1E  Microsoft VBScript runtime error: Error message: Unknown error 0x800A01B6. Error code 0x800a01b6.
                             Object doesn't support this property or method: 'NwEngine.Context.Args' (Line 4, Col. 5)
                             The setup script contains the error listed above. Please contact your system administrator and provide this information, for example by sending him a screenshot of this message box (Press Alt+PrtScrn to create the screenshot and copy it to the clipboard).
    16:25:13 NwSapsAtlC  1E  Failed to run script:
                                  ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8
                               1: NwEngine.Context.Log.Write "Script-action: Checking reboot condition."
                               2:             NwEngine.Context.Log.Write "Script-action: NwEngine.Context.Reboot = " & NwEngine.Context.Reboot
                               3:             If NwEngine.Context.Reboot = 1 Then
                               4:                 If NwEngine.Context.Args("SuppressReboot") <> "" Then
                               5:                     NwEngine.Context.Reboot = 0    'Setting Flag for no Reboot
                               6:                     NwEngine.Context.Log.WriteWarning "Script-action: Reboot suppressed by the user. NwEngine.Context.Reboot = " & NwEngine.Context.Reboot
                               7:                 ElseIf NwEngine.Context.Args("DelayReboot") <> "" Then
                               8:                     NwEngine.Context.Reboot = 1    'Setting Flag for delayed Reboot
                               9:                     NwEngine.Context.Log.WriteWarning "Script-action: Reboot delayed by the user. NwEngine.Context.Reboot = " & NwEngine.Context.Reboot
                              10:                 Else
                              11:                     NwEngine.Context.Reboot = 2    'Setting Flag for immediate Reboot
                              12:                     NwEngine.Context.Log.Write "Script-action: Enforce immediate reboot."
                              13:                 End If
                              14:             End If
                                  ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8
                             Error message: Unknown error 0x80020101. Error code 0x80020101.
    16:25:13 NwSapsAtlC  1E  Failed to parse script. Error message: Unknown error 0x80020101. Error code 0x80020101.
    16:25:13 NwSapsAtlC  1E  While processing Component '$MS System Files' with Id '{F270A214-3AD3-4235-9C74-F4D323B54976}' 1 error(s) have been registered.
    16:25:13 NwSapsAtlC  1   CompAct.:Installed Component '$MS System Files' with Id '{F270A214-3AD3-4235-9C74-F4D323B54976}'
    With this the NwSapSetup.log ends with:
    16:26:23 NwSapSetup 1 Return-Code: 145
    In the next logical step within our environment a uninstallation of the SAP GUI gets started:
       Commandline:  
    '"C:\Program Files (x86)\SAP\SapSetup\Setup\NWSapSetup.exe"  /Silent /Uninstall /Package=PEACY'
    This operation gets done with:
    12:35:47 NwSapSetup 1 Return-Code: 0
    After that the installation of the SAP GUI gets started again with:
       Commandline:        '"C:\peacy.sys\source\SAPGUI730PL8\source\setup\NwSapSetup.exe"  /noDLG /norestart /Package=PEACY'
    Now the Installation gets done with:
    12:52:12 NwSapSetup 1 Return-Code: 0
    Every first installation of SAP GUI 7.30 PL8 is affected. This is a cross-platform issue (Windows 7 and Windows 8.1). If there was our older package version (SAP GUI 7.30 PL4) installed, the installation of SAP GUI 7.30 PL8 gets done without problems.
    Every new client with the SAP GUI 7.30 PL8 assigned or the re-installation of it, and every first installation of the package on a client without SAP GUI leads to the mentioned issue - package gets installed with the mentioned error, afterwards the uninstallation gets started by our environment and finally the installation gets done with the second try. This is not a practicable method for our support staff.
    Are there any hints how to resolve this issue. (A upgrade to the newest patch level of SAP GUI is not a practicable solution)
    Thanks in advance!
    Best regards
    Christian

    Hello Christian,
    For older releases of the SAP GUI client a good approach is to create package for uninstalling old SAP GUI.  Depending on the state of the old SAP GUI's you're upgrading those may not be "clean" enough to warrant upgrading in place.
    The older GUI's have component's no longer provided with the newer releases so most recommendations are to uninstall completely an do a fresh installation.
    I credit Matt Fraser for this information and suggest reading his documentation.  The last 4 articles are germane to you're situation.  I hope this helps you.
    http://scn.sap.com/thread/3620515
    http://scn.sap.com/docs/DOC-55477
    http://scn.sap.com/docs/DOC-55574
    http://scn.sap.com/docs/DOC-55575
    http://scn.sap.com/docs/DOC-55633
    http://scn.sap.com/docs/DOC-55634
    http://scn.sap.com/docs/DOC-55674
    Cheers,
    Dan Mead

Maybe you are looking for

  • Javascript IView on portal 7.1

    Hello, In our portal, we have certain functionality that requires calling custom javascript functions from Web Dynpro. In portal 7.0, we created an ivew from a jsp project, that contained the javascript code and communicated with web dynpro using epc

  • Network Mode Switch No Longer Possible After Upgrade

    Hello. I can't switch from 3G/H+ to 2G any longer. I could do this when I still had the OS 7.0 running on my Torch 9810 (AT&T). This changed after I upgraded to the OS 7.1. Now, when I go to the "Networks and Connections" option, all I see is "Manual

  • Delete with extent returning to the tablespace

    When I delete all the rows from the table I can use: 'truncate table mytable drop storage' and the extents are returned to the tablespace that table resides in. Is something like this possible with the delete statement? If not - or if I just didn't u

  • Cannot enable OpenGL

    Macbook Air with Intel HD Graphics 3000 384 MB. When attempting to open 3D file Photoshop cc14.2.1 receive error message "Could not complete your request because 3D functionality is currently disabled due to OpenGL being disabled." Cannot enable OPEN

  • I am using iphone3g and upper portion of the screen is not working.

    I am using iphone3g 16GB and upper portion of the screen is not working and somebody suggest to get a new phone, should i get a replacemet to the old one..? i purchased on 2008