Ms SqlServer connection: where is the database?

I'm connecting to MS SQL 2000 with a user that is owner of the database i want to convert into oracle. The connection is OK, but when i connect i cannot see the database and its tables. The same if i connect with user "sa".
Can anybody help me?

Hi,
I'm not sure where the problem is, I think it is more how SQL Server is implemented, whenever we look for tables they always appear under the 'dbo' schema regardless of who created them. All that JDeveloper does is query the Database metadata.
Regards,
Lisa

Similar Messages

  • Where is the database panel in Dreamweaver CC?  Was this feature removed?

    Where is the database panel in Dreamweaver CC?  Was this feature removed?
    Mike

    At the link I posted above.
    There is a single extension to restore these features. Extension is available at:
    Vista/Windows 7: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\Configuration\DisabledFeatures
    Mac OS X: /Applications/Adobe Dreamweaver CC/Configuration/DisabledFeatures
    To install, follow instructions in the video
    http://www.youtube.com/watch?v=cB2vmNfcq7A
    Nancy O.

  • Hi where is the database link previously under windows menu?

    Hi where is the database link previously under windows menu

    Removed feature: Server Behavior, Bindings and Components Panels and Database feature
    There is a single extension to restore these features. Extension is available at:* Vista/Windows 7: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\Configuration\DisabledFeatures* Mac OS X: /Applications/Adobe Dreamweaver CC/Configuration/DisabledFeatures
    As seen on http://blogs.adobe.com/dreamweaver/2013/06/a-look-at-the-modernized-dreamweaver-cc.html
    Video instructions on how to install these back available here: http://www.youtube.com/watch?v=cB2vmNfcq7A

  • Where is the database connection for a mobile site?

    I have a Flash mobile site that I didn't create, but need to edit. On clicking the submit button it checks that the login & password are in a SQL database. The problem is, I can't find the method that runs a query on the database or where the database is even connected. I've tried searching through the code for words like "SQL", "database", and "connection" without success. I stepped through the code where I find a call to method "super", but then it goes back to the original method and then the user is logged in. Can someone explain where the call to the database is?
    Other things I'd like to know are: Where is the SQL Connection? In the main (non-mobile site), there is a web.config with a line that says
    <add name="TPConnectionString1"  connectionString="DataSource=xxx.xx.xxx.xx,xxxx\sqlexpress;Initial Catalog=TP;Persist Security  Info=True;User ID=xxxxx" providerName="System.Data.SqlClient"/>
    Where (what file: ex. web.config, xyz.as, etc.) would a similar line in the mobile code be?
    What does super(type, bubbles, cancelable) do?
    Here's the method for the submit button: LoginView.mxml
            private function btnclicked():void{  techController.username = txtUsername.text;  techController.password = txtPassword.text;  var evt:TechEvent = new TechEvent(TechEvent.LOGIN_USER);  this.dispatchEvent(evt);  }
    Here's the TechEvent function that is called: TechEvent.as
        public function TechEvent(type: String, bubbles:Boolean=true, cancelable:Boolean=false)  {  super(type, bubbles, cancelable);  }
    Here's the dispatchEvent method: UIComponent.as
    override public function dispatchEvent(event:Event):Boolean  {  if (dispatchEventHook != null)  dispatchEventHook(event, this);    return super.dispatchEvent(event);  }

    You are looking for an event handler for the TechEvent.LOGIN_USER event.
    Coding style looks similar to a SWIZ style framework, in which case, the event handlers could be defined using metadata [EventHandler] or [Mediate] tags, but could just be a plain simple .addEventListener(TectEvent.LOGIN_USER,fn); declaration earlier on.
    Either way, this is what has happened:
    1. User enters uname and password, then clicks button
    2. Button click handler populates the techController with relevant values then dispatches an event to let the world know it has done so
    3. The event handler checks the techController and makes the login call
    4. Some time later, the server will respond and trigger another event that the app can respond to
    G

  • I want to connect it to the database 10g to oracle 9i

    How can i do that? is it possible???
    I am getting error TNS-12541: TNS: no listener
    database on my laptop is 10g XE ADDITION on XP
    and on server it is 9.2.0.2
    As far as I know client software should be lesser or equal

    user9007339 wrote:
    How can i do that? is it possible???
    I am getting error TNS-12541: TNS: no listener
    database on my laptop is 10g XE ADDITION on XP
    and on server it is 9.2.0.2
    As far as I know client software should be lesser or equalThe relationship bet. client and server is even looser than that.
    Use copy and paste to show the actual sqlplus command you use, and the exact response.
    Here's a primer on how a tns connection works. This should help you systematically track down the problem
    =================================
    Assume you have the following in your tnsnames.ora: (client machine)
    larry =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = myhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = curley)
      )Now, when you issue a connect, say like this:
    $> sqlplus scott/tiger@larrytns will look in your tnsnames.ora for an entry called 'larry'. Next, tns sends a request to (PORT = 1521) on (HOST = myhost) using (PROTOCOL = TCP), asking for a connection to (SERVICE_NAME = curley).
    Where is (HOST = myhost) on the network? When the request gets passed from tns to the next layer in the network stack, the name 'myhost' will get resolved to an IP address, either via a local 'hosts' file, via DNS, or possibly other less used mechanisms. You can also hard-code the ip address (HOST = 123.456.789.101) in the tnsnames.ora.
    Next, the request arrives at port 1521 on myhost. Hopefully, there is a listener on myhost configured to listen on port 1521, and that listener knows about SERVICE_NAME = curley. If so, you'll be connected.
    A couple of important points.
    First, the listener is a server side only process. It's entire purpose in life is the receive requests for connections to databases and set up those connections. Once the connection is established, the listener is out of the picture. It creates the connection. It doesn't sustain the connection. One listener, running from one oracle home, listening on a single port, will serve multiple database instances of multiple versions running from multiple homes. It is an unnecessary complexity to try to have multiple listeners. That would be like the telephone company building a separate switchboard for each customer.
    Second, the tnsnames.ora file is a client side issue. It's purpose is for address resolution - the tns equivalent of the 'hosts' file further down the network stack. The only reason it exists on a host machine is because that machine can also run client processes.
    What can go wrong?
    First, there may not be an entry for 'larry' in your tnsnames. In that case you get "ORA-12154: TNS:could not resolve the connect identifier specified" No need to go looking for a problem on the host, with the listener, etc. If you can't place a telephone call because you don't know the number (can't find your telephone directory (tnsnames.ora) or can't find the party you are looking for listed in it (no entry for larry)) you don't look for problems at the telephone switchboard.
    Maybe the entry for larry was found, but myhost couldn't be resolved to an IP address (say there was no entry for myhost in the local hosts file). This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe there was an entry for myserver in the local hosts file, but it specified a bad IP address. This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe the IP was good, but there is no listener running: "ORA-12541: TNS:no listener"
    Maybe the IP was good, there is a listener at myhost, but it is listening on a different port. "ORA-12560: TNS:protocol adapter error"
    Maybe the IP was good, there is a listener at myhost, it is listening on the specified port, but doesn't know about SERVICE_NAME = curley. "ORA-12514: TNS:listener does not currently know of service requested in connect descriptor"

  • Where is the database object administration GUI in Oracle XE 11g?

    Please read my whole question, because I'm sure people will misunderstand, and tell me to load http://localhost:8080/apex in my browser.  I know that is there.
    I am a previous user of Oracle XE 10g, but I just installed Oracle Express 11g. I only want to use it to get a local instance of Oracle database. The 10g APEX UI provided an easy way to administer database objects (users, schemas, and the like), but it appears the 11g APEX UI is some kind of weird application development environment that I don't want to use. It doesn't even seem aware of the schemas I created in the database using SQL Plus.
    So, where is the regular admin GUI for Oracle database objects like users/schemas (i.e. something that will list the schemas that exist in the database, and allow me to add or delete them)? Or does 11g force you to do that using SQL (in which case, I'm going to go back to 10g).
    Thanks,
    Jeff

    No, SQL workshop is not what I want.
    Basically, I don't want to deal with this concept of a "workspace" at all. It's useless to me and just gets in my way. All I want is a a UI where I can view a list of the schemas that exist in the database, and manipulate them easily.
    I have TOAD, so I could use that, but I liked the old 10g administration GUI, since it provided the exact functionality at the exact level of complexity that I needed.

  • Where is the database of "server side" sync items?

    Server 10.5.6 clients 10.5.5
    Problem: Server side file tracking for Mobile Home sync is on. Files are not syncing reliably. Desktop items don't make it back to the network home and other similar issues. The clients get several errors stating that there was a problem syncing one file or another and to contact the admin if it continues.
    Turn off Server side tracking. Files sync runs as one would expect, all files sync correctly with no errors.
    We use two off site subnets connected via site to site VPN. Sync now takes 10 minutes at those locations.
    Turn Server side tracking back on, assuming it might recreate the database automatically. Problems come back.
    Needed: How to delete the current presumably corrupt database on the server so that we can run server side tracking again?
    Thanks
    -Erich

    See
    http://lists.apple.com/archives/Client-management/2008/Nov/msg00075.html
    As well, you might wish to hold off on updating your clients to 10.5.6 if you can, some have reported PHD syncing reliability issues.

  • Where is the Database Initialization Parameter file (inti.ora ??) located ?

    I have E-Business Suite R12 installed on Windows XP.
    I want to change utl_file_dir path.
    I know that I have to change the Database Initialization Parameter file (inti.ora ??)
    Does anybody know, where is the file located ?
    When I search I am getting two files. (init.ora and init.ora.txt)
    Which file I need to make the changes in ???
    Thanks in advance

    The initialization file for the database is located in the $ORACLE_HOME/dbs directory, and is called init<SID>.ora

  • Oracle connection: cannot find the database driver

    i have the following code:
    Class.forName("oracle.jdbc.driver.OracleDriver");
         // Create a connection to the database
         String serverName = "rana-etcsup3ueu";
         String portNumber = "1521";
         String sid = "ORCLE";
         String url = "jdbc:oracle:thin:@rana-etcsup3ueu:1521:ORCLE";
         String username = "scott";
         String password = "tiger";
         connection = DriverManager.getConnection(url, username,password);
         } catch (ClassNotFoundException e) {
              JOptionPane.showMessageDialog(null,"Coud not find the database driver ");
         // Could not find the database driver
         } catch (SQLException e) {
              JOptionPane.showMessageDialog(null,"Coud not connect to the database ");
         // Could not connect to the database
    but i have ClassNotFoundException that is cannot find tha database driver

    This clearly implies that your driver classes are not on the classpath.
    Ensure that the classes are reachable to your JVM.

  • Where is the Database-Explorer View in NWDS CE

    Hello,
    i tried the download for the nwdi ce 7.1 and i want to learn something about developing java ee5 applications on sap netweaver. for this i worked with the book "Java-Programmierung mit SAP Netweaver" and the document "Developting Java EE 5 Applications from Scratch".
    Working with this documents at some point one should use the Database-Explorer to create Java Entity-Objects. But my Netweaver Developer Studio CE 7.1 does not contain it. As mentioned by the documentation it should be started by Window->Show-View->Other->Data->Datbase Explorer. But even the Entry Data is missing under Window->Show-View->Other.
    Does anybody have an idea why the view is missing??
    My NWD-Studio Version is 7.1 SP03 Pat0000
    Regards

    Hi, Matthias,
    As of NW 7.1 CE, the Database Explorer view has been renamed to Data Source Explorer. It should open automatically, when you switch to the Java EE perspective. If it does not, you can use Window >> Show View >> Other >> Connectivity >> Data Source Explorer.
    You can read some more information about developing Java EE 5 applications in the SAP official documentation:
    http://help.sap.com/saphelp_nwce10/helpdata/en/44/c778033d5360eee10000000a155369/frameset.htm
    I hope that helps!
    Regards,
    Yordan

  • Where is the Database-Explorer View in NWDI CE 7.1

    Hello,
    i tried the download for the nwdi ce 7.1 and i want to learn something about developing java ee5 applications on sap netweaver. for this i worked with the book "Java-Programmierung mit SAP Netweaver" and the document "Developting Java EE 5 Applications from Scratch".
    Working with this documents at some point one should use the Database-Explorer to create Java Entity-Objects. But my Netweaver Developer Studio CE 7.1 does not contain it. As mentioned by the documentation it should be started by Window->Show-View->Other->Data->Datbase Explorer. But even the Entry Data is missing under Window->Show-View->Other.
    Does anybody have an idea why the view is missing??
    My NWD-Studio Version is 7.1 SP03 Pat0000
    Regards

    wrong category

  • Smart Connect - where is the user guide?

    The Sony Smart Connect app is not intuitive, at least not for me and I don't have spare hours to learn it through trial and error.  Is there a detailed user's guide anywhere?  What are the exact definitions of "Condition" and "Action"?  I have my xperia tablet z linked to a Sony speaker SRS-BTX500 and am totally baffled by the Smart Connect screen that shows "Speaker" on the left, then "SRS-BTX500" on the right along with an admonition to "Add condition".  I just want the speaker to turn on when I play Music Unlimited and to turn off when I stop Music Unlimited.  Or do I have this backwards?  

    What Smart Connect does is to automatically perform certain actions (start an app, change settings) that you select under certain conditions (when you connect a certain accessory, at a certain time) that you select.
    If you for example set the conditions "Charger" and "Time 22.00-07.00" and the action "Sound mode: silent" this means that if a charger is connected and time is between 22.00 and 07.00 the tablet will be in silent mode.
    The tablet can unfortunately not turn on/off the power in your speaker for you. If the speaker is on and paired with your tablet it will automatically be used when you play music regardless of Smart Connect. What you could do using Smart Connect is to set the speaker as a condition and Music Unlimited as an Action. What will happen then is that when you power on the speaker and it gets connected Smart Connect will start the app Music Unlimited for you.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Where is the database

    Hi
    I've just started with mysql and is still fighting with my first connection. I have the driver installed and the program finds the driver. My problem is: How do I create a database, where do I put it and how do I connect to it?
    Thanks

    Hi
    I've just started with mysql and is still fighting
    with my first connection. I have the driver installed
    and the program finds the driver. My problem is: How
    do I create a database, where do I put it and how do
    I connect to it?Get a database from somewhere, install it, start it and read the JDB tutorials about how to connect to it.

  • Connecting forms6i to the database in the local network

    im using forms6i and oracle 10g. and i m not able to get connected to the 10gdatabase inthe server system. I've reconfigured the the service name in the net manager also.still there is a problem in connection.
    thanx in advance

    that's ok......coming from the first....i've just uninstalled and installed 10ghome and forms6i on my system.....ok now tell me the very next step to get connected to 10gdatabase which is in the server system from my system.
    database name: gdb
    my system name: gir-2
    server system name: gir-1
    and the tnsnames.ora file in the server is
    # tnsnames.ora Network Configuration File: E:\10ghome\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle configuration tools.
    GDB =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = gir-1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = gdb.home)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    thanx in advance

  • Where in the database should my themes and styles and maps etc... go?

    We had a problem performing an export of the MDSYS schema for backup purposes. When we tried to import our data, after a database corruption thanks to a patch, the themes and styles, and maps that we created did not get put back in user_sdo_themes, maps, styles, etc... the data was never exported.
    Oracle support is saying that these things should not be going in the MDSYS schema, if they do not go in there, then where should they be going? Also how do I map the definitions back to where I should be putting them? We create all of our spatial data in a schema named RESOURCES. Should I be creating tbles such as user_sdo_themes in my RESOURCES Schema?
    thank you!

    The MDSYS user does in fact contain all of that information, but you should not be exporting the mdsys user any more than you export the sys or system users.
    When I export map metadata for a user, and I want to be able to reinsert that data on import, I will do something like the following:
    before exporting, I will create metadata tables
    create table my_maps as select * from user_sdo_maps;
    create table my_themes as select * from user_sdo_themes;
    create table my_styles as select * from user_sdo_styles;
    I'll export those tables with whatever data I am exporting.
    After the import, I'll do something like this:
    insert into user_sdo_styles (select * from my_styles);
    insert into user_sdo_themes (select * from my_themes);
    insert into user_sdo_maps (select * from my_maps);
    When I am sure everything looks copacetic, I will drop the tables I created for export.
    hope this helps.

Maybe you are looking for

  • Reg :-maintain a table maintenance view for the z table.suggest me the code

    i have question.i have created a z table related to pp module.the requirement is to maintain {table maintenance view} for this z table.how could this be done.can any one suggest me the code for this?

  • I cannot seem to get rid of Angry Birds...never downloaded it.

    I purchased a used macbook pro that has the app angry birds installed. I can't get rid of it, nor can I find the app anywhere. It constantly asks to update, and I do not even want this app.

  • Mail delete´s automatically received mails after 2 days.

    Mail App delete´s my received E-mails. But I need them on my iPhone. How can I change this?

  • Mac OS 9.1 and 2001 Office :mac

    Greetings! I am in a NYC Public School and doing summer maintenance on the older computers, mostly gumdrop iMacs in all the lower grade classrooms, about 40 computers. On a majority of the machines, when I try to open up MS Word, from the 2001 Office

  • ACR 7.4 disaster

    I downloaded the latest version of ACR (7.4) today, not only did it NOT install but it also managed to delete the plugin in Photoshop as well as in Bridge. I have donwloaded it again but it fails to install. I would like a solution asap as I have a w