Tagged Questions

Oracle Enterprise Manager is a web-based interface for controlling an Oracle database.

learn more… | top users | synonyms

8
votes
4answers
6k views

Script all stored procedures in Management Studio 2005

In Enterprise Manager you could script all SPs in a database through the right click menu, is there a way to do it in Management Studio?
7
votes
2answers
306 views

SQL Server Enterprise Manager - Mass Delete of Tables and Changing Ownership of Tables

I have pretty much no experience with SQL Server's Enterprise Manager so I am not sure if this is even possible (or hopefully laughably simple!) During an import into a database something has ...
5
votes
5answers
1k views

SQL Server Management Studio: Import quietly ignoring 99.9% of data

The Problem i'm trying to import data into a table using SQL Server Management Studio's Import Data task. It only brings in 26 rows, out of the original 49,325. (Edit: That's where 99.9% comes from: ...
3
votes
6answers
2k views

How do I make a copy of a table within SQL Server Enterprise Manager?

This is one of those "I probably should know this, but I don't" questions. How do I make a copy of a table in Enterprise Manager? Not export the data into a different database, just make a copy of the ...
3
votes
2answers
190 views

Is there danger of corruption in SQL Server 2000 databases when using SQL Server 2005 Management Studio?

In an interview for a SQL DBA position a while back, I mentioned I prefer the SQL 2005 Management Studio app vs. the old 2000 versions of Enterprise Manager / Query Analyzer. The DBA who was ...
3
votes
6answers
1k views

How “expensive” is Oracle Enterprise Manager?

I'm using a medical records system built on an Oracle database. Our vendor just told us that we need to shut down Oracle's Enterprise Manager service when we're not using it, because it uses too much ...
2
votes
2answers
636 views

Change default port when registering a new SQL 2000 server

I'm trying to register an externally hosted SQL 2000 server through Enterprise Manager which isn't on the default port and I can't see anywhere to change it within Enterprise Manager. So, the ...
1
vote
1answer
52 views

How to view ActualNumberOfRows in SQL Server execution plan

I've been trying to diagnose a performance issue in my database and have googled a lot on maxdop. I have seen in many places where ActualNumberOfRows, ActualRebinds etc. are shown in properties view ...
1
vote
2answers
188 views

Write a plugin/form for SQL server enterprise manager

Is it possible to write a plugin or a form for SQL Server Enterprise Manager version 8? I'm doing some simple queries all the time to admin the databases. So wondering if I could write something for ...
1
vote
2answers
194 views

What is the MySQL equivelent of Oracle's Enterprise Manager

I understand that Oracle will at some point add support for MySQL to its Enterprise Manager software. However I'd like to know perhaps from other Oracle to MySQL migrants what tools are available for ...
1
vote
2answers
174 views

SQL Server “not known to be running”

When I attempt to connect to SQL server using enterprise manager I get the strange message: "SQL Server is not known to be running. Are you sure you want to connect?" What is it trying to tell me? ...
1
vote
3answers
669 views

SQL Server Best way to create a summary view from multiple views

Given I have the following view where N=1..100 detail_view_N Pant Quantity Fieldx ... A 20 A 13 B 4 Currently we have summary views which insert to a table like ...
1
vote
1answer
305 views

Oracle Enterprise Manager Favicon

Our Oracle Enterprise Manager Grid Control 10.2.0.5 website has no favicon. I don't know if this is normal or not. If it is not normal I'll contact support, but if it is normal I'd like to know if ...
1
vote
2answers
21k views

How can i get Enterprise Manager for Oracle 11g R1 to install?

I am running a windows xp sp3 machine with 22gb free space, 1.5ghz Intel Pentium M and 768MB of RAM. Every time i try to install oracle 11g, the installation goes okay except for running the emca ...
0
votes
2answers
27 views

How to get Enterprise Manager installed in SQL Server 2008 Express?

I've installed SQL Server 2008 Express twice now, and all the services work and I can create databases from Visual Studio 2010, but I don't have the enterprise manager available in the SQL Server 2008 ...
0
votes
0answers
14 views

SQL Server 2000 column containing XML has a strange encoding

When I run my select query on my SQL Server 2000 table with a nText column containing XML I get a strange coded text (looks like unicode, with squares and all) in de xml column. Some details I didn't ...
0
votes
1answer
36 views

trace 10046 and OEM privileges

It would be great if someone would share trace 10046 privileges and Oracle enterprise manager (OEM) privileges so i can ask my DBA to grant the privileges to my role and by OEM privileges I ...
0
votes
1answer
194 views

Updating SQL Table In Enterprise Manager - Foreign Key Issues

I have a table with a whole bunch of FKs. Table Vehicles ----------- ColorID -> Color.ID MakeID -> Make.ID ModelID -> Model.ID etc... My issue is that I forgot a few columns and I need to ...
0
votes
1answer
59 views

How to configure EM inside database

I need to complete some tasks in EM. But I don't have access to web interface and ssh. Is there other way to configure EM? I think EM should have pl/sql API, but I didn't find any information about ...
0
votes
1answer
947 views

Oracle enterprise manager java.lang.Exception

After creating a db using Database Configuration Assistant, I go to Enterprise Manager, log into it, and it tells me, that java.lang.Exception: Exception in sending Request :: null. OracleDBConsole ...
0
votes
1answer
151 views

SQL Enterprise Manager R2

I would like to use SQL Enterprise Manager to manage my SQL Azure Databases. Everywhere I look everyone says that if you want to use the object browser then you need R2. However I can not find ...
0
votes
1answer
546 views

Equivalent for Oracle Enterprise Management Console for Mac

Somebody can advise an equivalent for Enterprise Management Console? I found this Oracle Enterprise Manager 10g Grid Control Management Agent. But i cant launch it. There is two jar file. I try to ...
0
votes
2answers
287 views

Can Visual Studio 2008 provide any of the functionality that Query Analyzer and Enterprise Manager provide?

I'm currently using MSSQL Server 2000 and to design tables, create and alter stored procedures as well as manage users and permissions I'm using Query Analyzer and Enterprise Manager. I also spend an ...
0
votes
9answers
220 views

SQL connection Issues

We are having issues with our sql server. About two times a day we have to restart our server because SQL becomes unresponsive to our web applications. It doesn't look like we have a problem with to ...
-1
votes
1answer
90 views

How to edit a raw table, showing a foreign key value as reference

I have a simple table for a gallery. There are many galleries, each containing images - which may belong to multiple galleries. Basically this is a 'cross table' with a sort order within that ...