How to unregister/drop a schema

I want to delete/ unregister a schema.How can I do the same?
Currently I'm using isValidSchema for validating a xml with a given schema.
I think this function register the schema.
When I use the function isValidaSchema with the same URL and same schema, ti throws me ORA-31085 error that the same URL cannot be registered again with the given schema.
IS there any way to drop the schema or unregister the schema so that the same URL can be validated again with the same schema.
Regards
Garima

I'm talking about the XML schemas.
Following function is throwing Message : [ORACLE ERROR : [ORA-31085: schema "XDh1jUheYAR5PgNAgAILJCxg==" already registered[/b] error
ROCEDURE validateXmlSchema(inp_xmlMsg IN VARCHAR2,
out_isValidDoc IN OUT NUMBER,
inp_xmlSchema IN OUT VARCHAR2,
inp_xmlUrl IN OUT VARCHAR2)IS
xmldoc XMLType;
res number;
-- result boolean;
BEGIN
dbms_xmlSchema.deleteSchema(inp_xmlSchema,4);
xmldoc := XMLtype(inp_xmlMsg);
res := xmldoc.isSchemaValid(inp_xmlSchema);
IF (xmldoc.isSchemaValid = 1) THEN
out_isValidDoc := 1;
ELSE
out_isValidDoc := 0;
END IF;
END validateXmlSchema;
Why is the delete schema throwing that error?

Similar Messages

  • How i can drop whole schema with the datafiles

    I have a one schema and i would like to drop that schema as well the datafiles. so i can get the space. can someone tell me the nice way and safe way to drop.
    Thanks

    Don't drop a datafile unless you're droping Tablespace.
    see below Asktom's thread ...
    http://asktom.oracle.com/pls/ask/f?p=4950:8:14682619195071629452::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:515222144417

  • How Do I drop a schema in MaxDB

    Hi all
    I have a problem during system copy of SAP ECC 6.0 SR3 (linux and MaxDb). Export went just fine and I am on importing step now (via SAPinst --> System Copy). I have not choosen "Database specific tool", I have choosen export/import.
    Also I have choosen to recreate DB instance and Schema.
    ok, so here is my problem, on step "Remove database Schema" it fails and the log says: "The deletion of schema SAPP01 failed".
    So i thought I would delete the schema manualy but I can not seem to find the approiate command for this. I have tried "help" command in dbmcli. But I can not find it.
    Any help would be appreciated ).
    //Pelle

    I got it sorted out now by MaxDB_SQL_Studio. The log said "unknown user SAPP01" so I simply created it in MaxDB_SQL_Studio by:
    CREATE USER SAPP01 PASSWORD xxxxxx
    And viola ..now it could delete schema with the right user.
    Many thanks for getting me in the right direction with SQL studio, that was the soultion for me.
    //Pelle

  • How to drop a schema and load another one?

    I have an interruption during installing the central instance of a SAP Netweaver 04s System. After I restarted the installation I found this message in the Log file.
    <b>ERROR 2006-08-16 16:17:04</b>
    CJS-30109 The Java load in database PDV/liesc1ddbw01 has already been configured. <p> SOLUTION: Drop the schema and load it with a new load before running this installation.
    <b>ERROR 2006-08-16 16:17:04</b>
    CJS-30109  The Java load in database PDV/liesc1ddbw01 has already been configured. <p> SOLUTION: Drop the schema and load it with a new load before running this installation.
    <b>ERROR 2006-08-16 16:17:04</b>
    FCO-00011  The step getJavaLoadType with step key |NW_Java_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|10|0|getJavaLoadType was executed with status ERROR.
    QUESTION: How to drop a schema and load another one?

    Hello,
    I got the similar error....but i did reinstall from o.s. and done the installation again...it was worked successfully..
    if you find out alternate solution for that ...please let us know..
    Regards,

  • How can I drop the java objects from a schema

    hi..good afternoon all...
    How can I drop the java objects from a database schema???
    suppose the credentials are scott/tiger@db1
    Another thing is that...I have to do this from cmd(command prompt) as there is no plsql developer or sqldeveloper installed in the machine.
    plss help...thanks in advance...

    hi...i have already tried all the options..but it is showing the error..
    ora:01435 - user does not exist
    but when i have given the command...
    select object type, object_name, status from user_objects where object_type like'%JAVA%';
    then it is showing that the java_object is present....
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    SQL>
    SQL>
    SQL> set linesize 200
    SQL>
    SQL>
    SQL>
    SQL> select object_type, object_name, status from user_objects where object_type
    like '%JAVA%';
    OBJECT_TYPE OBJECT_NAME
    STATUS
    JAVA CLASS javaclass1
    VALID
    JAVA SOURCE javaclass1
    VALID
    SQL> drop java source javaclass1.java;
    drop java source javaclass1.java
    ERROR at line 1:
    ORA-01435: user does not exist
    SQL>

  • How to drop unused schema

    How to drop unused schema
    give ur suggestion
    Thanks

    Robert Geier wrote:
    If you are sure it is unused, export the schema to disk (using exp, expdp), then drop it.
    drop user xxx cascade;
    If you are not sure, then you may want to audit to confirm it is not used, and maybe lock the schema for a month before you drop it.Of course locking the schema (actually, locking the user account that owns the schema) doesn't prevent the objects in the schema from being used, it just prevents the owner of the schema from connecting. In a lot (should I say "most"?) systems, the application schemas are owned by "users" that are already locked, because there is never any intent for that user account to actually connect. So trying to determine if a schema is used by locking the owning account and seeing who screams is not going prove much of anything.

  • How to drop a schema?

    Hi,
    I need to drop a schema un oracle.
    can you please provide query and your suggestions?
    Thanks
    Sathya

    SQL> create user muz identified by muz;
    User created.
    SQL> grant connect,resource to muz;
    Grant succeeded.
    SQL> conn muz/muz;
    Connected.
    SQL> create table test(a number);
    Table created.
    SQL> select * from tab;
    TNAME TABTYPE CLUSTERID
    TEST TABLE
    SQL> disc
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> conn system/oracle
    Connected.
    SQL> drop user muz cascade;
    User dropped.

  • How to monitor DROP USER

    Hi Guys,
    Would anybody suggest me how to monitor the DROP USER command?
    OS: AIX, Oracle: 11.2.0.2
    CSM

    CSM.DBA wrote:
    I'm extremely sorry for not framing the question properly.
    I mean, Is there any way I can monitor the progress of the DROP USER command.
    To give more details, I have a schema with 500G+ data and I want to drop that schema. No doubt it'll take significant time but how to monitor how it's progressing?
    Using v$session_longops ?
    Aman....

  • How can I drop a site on WEBDB ??

    Hi,
    How can I drop a site on WEBDB(linux Rh6) ???
    What are the commands or SQL commands to do this ???
    Other question :
    Is WEBDB CGI Listener really work ??? (the password is not
    accepted by the CGI listener)
    Thanks.
    null

    DROPPING SITES
    To drop a Web site created with WebDB:
    1. Log in as the database SYS user by typing the following at a
    command line prompt:
    sqlplus sys/<sys_password>
    2. Type the following at a SQL*Plus prompt:.
    drop user <site_schemar> cascade;
    drop user <site_schemar>_ADMIN cascade;
    drop user <site_schemar>_PUBLIC cascade;
    delete from WEBDB.WWV_MODULES$ where
    LOWER(SCHEMA) = '<site_owner>';
    COMMIT;
    where
    sys_password is the SYS user password for the database.
    site_schema is the schema that owns the site
    DROPPING USERS WHO CREATE SITES
    If you drop a user from the database, any WebDB site the user has
    created will stop working. To fix this problem:
    1. Log in as the database SYS user by typing the following at a
    command line prompt:
    sqlplus sys/<sys_password>
    2. From the SQL*PLUS prompt type:
    grant execute on sys.dbms_sys_sql to <site_schema>
    where
    sys_password is the SYS user password for the database
    site_schema is the schema that owns the site
    ANdrey (guest) wrote:
    : Bart (guest) wrote:
    : : Hi,
    : : How can I drop a site on WEBDB(linux Rh6) ???
    : : What are the commands or SQL commands to do this ???
    : I'm not sure, but look in pdf file for WEBDB 2.1 for NT (for
    : example)
    : : Other question :
    : : Is WEBDB CGI Listener really work ??? (the password is not
    : : accepted by the CGI listener)
    : : Thanks.
    null

  • How to import a user schema to its original state

    Hi,
    I had a task to export user schema 'USER01' with all the objects of the user, export was successful when I executed this statement.
    $expdp USER1/PASS1@PD01 DIRECTORY=user1exp DUMPFILE=USR01.dmp SCHEMAS=USER1 LOGFILE=USR01.LOG
    After which I dropped USER01 and tablespace USER01.
    how can I import usr01.dmp so that I can have all objects of user as it was before export and dropping the user.
    $impdp USER1/PASS1@PD01 DIRECTORY=user1exp DUMPFILE=USR01.dmp FULL=y LOGFILE=impfullusr01.log
    will this statemnet work to import.
    Thanks,
    Ven

    Hi,
    Just two notes I'd like to share:
    1 - If the user that is running the export job is prived, then the export dump file will contain the statement to recreate the schema, if it is not prived, then this statement will be missing.
    2 - you ran a schema mode export which never includes the create tablespace statement.
    So, you said that you dropped the schema and the tablespace. Minimally, you will have to create the tablespace where the objects existed. You may also have to create the schema if the export dump file does not contain that information. So, based on now the export was done, you will have a slightly different import command:
    1. if export was from a prived account, you don't have to create the schema. If you want the data pump do create the schema, you need to run the impdp from another schema that is prived. This import job will create the original schema and all of the objects in the dumpfile.
    2. If export was from a non-prived account, you will have to create the schema and then you can run the import from either the schema you just created, or from a prived schema.
    Hope this helps.
    Please let me know if you have other questions or if this was not clear.
    Dean

  • XML Schema Collection (SQL Server 2012): How to create an XML Schema Collection that can be used to Validate a field name (column title) of an existing dbo Table of a Database in SSMS2012?

    Hi all,
    I used the following code to create a new Database (ScottChangDB) and a new Table (marvel) in my SQL Server 2012 Management Studio (SSMS2012) successfully:
    -- ScottChangDB.sql saved in C://Documents/SQL Server XQuery_MacLochlainns Weblog_code
    -- 14 April 2015 09:15 AM
    USE master
    IF EXISTS
    (SELECT 1
    FROM sys.databases
    WHERE name = 'ScottChangDB')
    DROP DATABASE ScottChangDB
    GO
    CREATE DATABASE ScottChangDB
    GO
    USE ScottChangDB
    CREATE TABLE [dbo].[marvel] (
    [avenger_name] [char] (30) NULL, [ID] INT NULL)
    INSERT INTO marvel
    (avenger_name,ID)
    VALUES
    ('Hulk', 1),
    ('Iron Man', 2),
    ('Black Widow', 3),
    ('Thor', 4),
    ('Captain America', 5),
    ('Hawkeye', 6),
    ('Winter Soldier', 7),
    ('Iron Patriot', 8);
    SELECT avenger_name FROM marvel ORDER BY ID For XML PATH('')
    DECLARE @x XML
    SELECT @x=(SELECT avenger_name FROM marvel ORDER BY ID FOR XML PATH('Marvel'))--,ROOT('root'))
    SELECT
    person.value('Marvel[4]', 'varchar(100)') AS NAME
    FROM @x.nodes('.') AS Tbl(person)
    ORDER BY NAME DESC
    --Or if you want the completed element
    SELECT @x.query('/Marvel[4]/avenger_name')
    DROP TABLE [marvel]
    Now I am trying to create my first XML Schema Collection to do the Validation on the Field Name (Column Title) of the "marvel" Table. I have studied Chapter 4 XML SCHEMA COLLECTIONS of the book "Pro SQL Server 2008 XML" written by
    Michael Coles (published by Apress) and some beginning pages of XQuery Language Reference, SQL Server 2012 Books ONline (published by Microsoft). I mimicked  Coles' Listing 04-05 and I wanted to execute the following first-drafted sql in
    my SSMS2012:
    -- Reference [Scott Chang modified Listing04-05.sql of Pro SQL Server 2008 XML by Michael Coles (Apress)]
    -- [shcColes04-05.sql saved in C:\\Documents\XML_SQL_Server2008_code_Coles_Apress]
    -- [executed: 2 April 2015 15:04 PM]
    -- shcXMLschemaTableValidate1.sql in ScottChangDB of SQL Server 2012 Management Studio (SSMS2012)
    -- saved in C:\Documents\XQuery-SQLServer2012
    tried to run: 15 April 2015 ??? AM
    USE ScottChangDB;
    GO
    CREATE XML SCHEMA COLLECTION dbo. ComplexTestSchemaCollection_all
    AS
    N'<?xml version="1.0"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="marvel">
    <xsd:complexType>
    <xsd:all>
    <xsd:element name="avenger_name" />
    <xsd:element name="ID" />
    </xsd:all>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>';
    GO
    DECLARE @x XML (dbo. ComplexTestSchemaCollection_all);
    SET @x = N'<?xml version="1.0"?>
    <marvel>
    <avenger_name>Thor</name>
    <ID>4</ID>
    </marvel>';
    SELECT @x;
    GO
    DROP XML SCHEMA COLLECTION dbo.ComplexTestSchemaCollection_all;
    GO
    I feel that drafted sql is very shaky and it needs the SQL Server XML experts to modify to make it work for me. Please kindly help, exam the coding of my shcXMLTableValidate1.sql and modify it to work.
    Thanks in advance,
    Scott Chang

    Hi Scott,
    2) Yes, FOR XML PATH clause converts relational data to XML format with a specific structure for the "marvel" Table. Regarding validate all the avenger_names, please see below
    sample.
    DECLARE @x XML
    SELECT @x=(SELECT ID ,avenger_name FROM marvel FOR XML PATH('Marvel'))
    SELECT @x
    SELECT
    n.value('avenger_name[1]','VARCHAR(99)') avenger_name,
    n.value('ID[1]','INT') ID
    FROM @x.nodes('//Marvel') Tab(n)
    WHERE n.value('ID[1]','INT') = 1 -- specify the ID here
    --FOR XML PATH('Marvel')  --uncommented this line if you want the result as element type
    3)i.check the xml schema content
    --find xml schema collection
    SELECT ss.name,xsc.name collection_name FROM sys.xml_schema_collections xsc JOIN sys.schemas ss ON xsc.schema_id= ss.schema_id
    select * from sys.schemas
    --check the schema content,use the name,collection_name from the above query
    SELECT xml_schema_namespace(N'name',N'collection_name')
    3)ii. View can be viewed as virtual table. Use a view to list the XML schema content.
    CREATE VIEW XSDContentView
    AS
    SELECT ss.name,xsc.name collection_name,cat.content
    FROM sys.xml_schema_collections xsc JOIN sys.schemas ss ON xsc.schema_id= ss.schema_id
    CROSS APPLY(
    SELECT xml_schema_namespace(ss.name,xsc.name) AS content
    ) AS cat
    WHERE xsc.name<>'sys'
    GO
    SELECT * FROM XSDContentView
    By the way, it would be appreciated if you can spread your questions into posts. For any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • How to put drop down in table control ?

    Hi All,
    I m writing one module pool program to edit table.
    I want dropdown to one field so that user can select the appropriate value. And also I want to save that record.
    So how to get the dropdown list and after editing that record how to save that in the database?
    Thanx in advance.
    -Umesh

    Hi Umesh,
    Please check this demo program RSDEMO_TABLE_CONTROL on how to add drop down list in table control. Also check this program DEMO_DYNPRO_TABCONT_LOOP_AT as well.
    To save to database you can code something like this in PAI.
    MODULE USER_COMMAND_0100 INPUT.
      SAVE_OK = OK_CODE.
      CLEAR OK_CODE.
      CASE SAVE_OK.
        WHEN 'SAVE'.
          MODIFY <database table> FROM TABLE <table control>.
          IF SY-SUBRC = 0.
          ELSE.
          ENDIF.
        WHEN OTHERS.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    Hope this will help.
    Regards,
    Ferry Lianto

  • How to restrict the user(Schema) from deleting the data from a table

    Hi All,
    I have scenario here.
    I want to know how to restrict a user(Schema) from deleting the values from a table created in the same schema.
    Below is the example.
    I have created a table employee in abc schema which has two values.
    EMPLOYEE
    ABC
    XYZ
    In the above scenario the abc user can only fire select query on the EMPLOYEE table.
    SELECT * FROM EMPLOYEE;
    He should not be able to use any other DML commands on that table.
    If he uses then Insufficient privileges error should be thrown.
    Can anyone please help me out on this.

    Hi,
    kumar0828 wrote:
    Hi Frank,
    Thanks for the reply.
    Can you please elaborate on how to add policies for a table for just firing a select DML statement on table.See the SQL Packages and Types manual first. It has examples. You can also search the web for examples. This is sometimes called "Virtual Private Database" or VPD.
    If you have problems, post a specific question here. Include CREATE TABLE and INSERT statements to create a table as it exists before the policies go into effect, the PL/SQL code to create the policies, and additonal DML statements that will be affected by the policies. Show what the table should contain after each of those DML statements.
    Always say which version of Oracle you're using. Confirm that you have Enterprise Edition.
    See the forum FAQ {message:id=9360002}
    The basic idea behind row-level security is that it generates a string that is automatically added to SELECT and/or DML statement WHERE clauses. For example, if user ABC is only allowed to query a table on Sunday, then you might write a function that returns the string
    USER  != 'ABC'
    OR      TO_CHAR (SYSDATE, 'DY', 'NLS_DATE_LANGUAGE=ENGLISH') = 'SUN'So whenever any user says
    SELECT  *
    FROM    table_x
    ;what actually runs is:
    SELECT  *
    FROM    table_x
    WHERE   USER  != 'ABC'
    OR      TO_CHAR (SYSDATE, 'DY', 'NLS_DATE_LANGUAGE=ENGLISH') = 'SUN'
    ;If you want to prevent any user from deleting rows, then the policy function can return just this string
    0 = 1Then, if somone says
    DELETE  employee
    ;what actually gets run is
    DELETE  employee
    WHERE   0 = 1
    ;No error will be raised, but no rows will be deleted.
    Once again, it would be simpler, more efficient, more robust and easier to maintain if you just created the table in a different schema, and not give DELETE privileges.
    Edited by: Frank Kulash on Nov 2, 2012 10:26 AM
    I just saw the previous response, which makes some additional good points (e.g., a user can always TRUNCATE his own tables). ALso, if user ABC applies a security policy to the table, then user ABC can also remove the policy, so if you really want to prevent user ABC from deleting rows, no matter how hard the user tries, then you need to create the policies in a different schema. If you're creating things in a different schema, then you might as well create the table in a different schema.

  • How to find the DB schema of XI DB tables to operate on the XI DB table

    Hi all,
    I have to execute some queries on internal XI DB. For this I need the schema name of the DB table where the data about the message is available. Can anyone tell, how to find the DB schema-name of the DB table? I have PI 7.1 system with internalDB.
    How to access the DB of the PI 7.1 system using NWA?
    Regards,
    Soorya

    Hi,
    The PI 7.1 Server shall definitely posses a Database. This Database shall have the ABAP and Java Dictionary tables in 2 different database schemas.You sholud be getting the names of the schema from the basis team supporting your server.
    I hope your are referring to the Java DB Schema for access. In order to get the schema name for the Java Dictionary, you should have access to the NetWeaver Adminstrator (NWA) of the PI Server.
    Logon to NWA, navigate to Configuration Management --> Infrastructure --> Application Resources. Select the Resurce Type to show as JDBC Drivers. Select the system driver and click on Dependent JDBC Datasources. This table should give you the schema name of the Java Table Storage of the PI 7.1 server.
    Regards,
    Alka.

  • How to get the current schema name

    Hi,
    Can anybody please tell me how to get the current schema name, there is some inbuilt function for this,but i am not getting that. Please help me.
    Thanks
    Jogesh

    ok folks, I found the answer at Tom's as usual.
    http://asktom.oracle.com/tkyte/who_called_me/index.html
    I rewrote it into a function for kicks. just pass the results of DBMS_UTILITY.FORMAT_CALL_STACK to this function and you will get back the owner of the code making the call as well some extra goodies like the name of the code and the type of code depending on the parameter. This ignores the AUTHID CURRENT_USER issues which muddles the schemaid. Quick question, does the average user always have access to DBMS_UTILITY.FORMAT_CALL_STACK or does this get locked down on some systems?
    cheers,
    paul
    create or replace
    FUNCTION SELF_EXAM (
       p_call_stack VARCHAR2,
       p_type VARCHAR2 DEFAULT 'SCHEMA'
    ) RETURN VARCHAR2
    AS
       str_stack   VARCHAR2(4000);
       int_n       PLS_INTEGER;
       str_line    VARCHAR2(255);
       found_stack BOOLEAN DEFAULT FALSE;
       int_cnt     PLS_INTEGER := 0;
       str_caller  VARCHAR2(30);
       str_name    VARCHAR2(30);
       str_owner   VARCHAR2(30);
       str_type    VARCHAR2(30);
    BEGIN
       str_stack := p_call_stack;
       -- Loop through each line of the call stack
       LOOP
         int_n := INSTR( str_stack, chr(10) );
         EXIT WHEN int_cnt = 3 OR int_n IS NULL OR int_n = 0;
         -- get the line
         str_line := SUBSTR( str_stack, 1, int_n - 1 );
         -- remove the line from the stack str
         str_stack := substr( str_stack, int_n + 1 );
         IF NOT found_stack
         THEN
            IF str_line like '%handle%number%name%'
            THEN
               found_stack := TRUE;
            END IF;
         ELSE
            int_cnt := int_cnt + 1;
             -- cnt = 1 is ME
             -- cnt = 2 is MY Caller
             -- cnt = 3 is Their Caller
             IF int_cnt = 1
             THEN
                str_line := SUBSTR( str_line, 22 );
                dbms_output.put_line('->' || str_line);
                IF str_line LIKE 'pr%'
                THEN
                   int_n := LENGTH('procedure ');
                ELSIF str_line LIKE 'fun%'
                THEN
                   int_n := LENGTH('function ');
                ELSIF str_line LIKE 'package body%'
                THEN
                   int_n := LENGTH('package body ');
                ELSIF str_line LIKE 'pack%'
                THEN
                   int_n := LENGTH('package ');
                ELSIF str_line LIKE 'anonymous%'
                THEN
                   int_n := LENGTH('anonymous block ');
                ELSE
                   int_n := null;
                END IF;
                IF int_n IS NOT NULL
                THEN
                   str_type := LTRIM(RTRIM(UPPER(SUBSTR( str_line, 1, int_n - 1 ))));
                 ELSE
                   str_type := 'TRIGGER';
                 END IF;
                 str_line  := SUBSTR( str_line, NVL(int_n,1) );
                 int_n     := INSTR( str_line, '.' );
                 str_owner := LTRIM(RTRIM(SUBSTR( str_line, 1, int_n - 1 )));
                 str_name  := LTRIM(RTRIM(SUBSTR( str_line, int_n + 1 )));
              END IF;
           END IF;
       END LOOP;
       IF UPPER(p_type) = 'NAME'
       THEN
          RETURN str_name;
       ELSIF UPPER(p_type) = 'SCHEMA.NAME'
       OR    UPPER(p_type) = 'OWNER.NAME'
       THEN
          RETURN str_owner || '.' || str_name;
       ELSIF UPPER(p_type) = 'TYPE'
       THEN
          RETURN str_type;
       ELSE
          RETURN str_owner;
       END IF;
    END SELF_EXAM;

Maybe you are looking for

  • Add a Signature Field to Export to PDF

    Post Author: fornachari CA Forum: Exporting Hi everybody! I am using Visual Studio 2005 and the version of Crystal Reports that come  with Visual Studio 2005. Does anyone know how to include a signature field when creating PDF in crystal reports with

  • Building application

    Hi everybody, I've created i Vi with Lab-View 7.1 and NI-vision. Now i wanted to build the application; once i've done it (bringing in the needed dlls too), and everything seemed to go right, i've brought this exe with the installer to another pc. I'

  • 8330!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    I am writing to you with a HUGE disappointment. I am an Executive Agent for Nationwide Insurance. I purchased the Blackberry 8330 thinking I had a wonderful phone! My service is through Boost mobile. When I got this phone, it errored out all the time

  • Business Connector 4.8 with Core Fix 4 or Service Release 6 ?

    I want to install the Business Connector 4.8. When it´s installed should I install additional the Core Fix 4 or Service Release 6 or both?

  • Output of show int po1 etherchannel doesnt show load?

    Hi, I have a set of 3750 switches which are stacked into 2 sets of 3. I have creted a port channel on each stack that connects to the other stack, as it is cross stack I have used channel-mode on. when i type the follwoing command, some values show a