Sql STORAGE DATATYPES

Hi There Guys!
I need a simple information about storage in oracle... what is the size of all the datatypes which there are in oracle?
The problem is this... I have to create a tablespace, so I need its storage, but I don't know what is the size of the single datatypes, and the documentation of the 11g version (that is what I need) tells a few information about it...
Thanks for all!!
See you soon!

No, no the problem is another, cause I think that is not important trought what I want to populate these datatypes, but what is the real size that characterizes theme:if I write varchar2(1), oracle allocates 1 byte, 2 byte... how much bytes it allocates? This is the problem! XD
In this way, if I have a table composed by two records: Name, Sourname, if I know what is the size of one varchar2 I can calcoulate all the size of the table.

Similar Messages

  • ADO and function that returns PL/SQL boolean datatype

    How to get PL/SQL boolean datatype using ADO?
    DBMS_SESSION.IS_SESSION_ALIVE function returns boolean.
    This code raises error with very strange description:
    Dim cmd As New ADODB.Command
    str = "{? = call DBMS_SESSION.IS_SESSION_ALIVE(""000011112222"" )}"
    With cmd
    Set .ActiveConnection = objDB.Connection
    .CommandText = str
    .CommandType = adCmdText
    .Parameters.Append .CreateParameter("Return", adBoolean, adParamOutput)
    End With
    cmd.Execute
    ? err.Source
    OraOLEDB
    ? err.Number
    -2147467259
    ? err.Description
    4ûC
    Thanks for any help.

    Mikhail,
    OraOLEDB does not support PL/SQL boolean type.
    Sinclair

  • PGS & ORA-06500:PL-SQL : storage error

    How do I tune PGA when I get an ORA-06500:PL-SQL : storage error. Works in 8i but not 9i. 9i is auto, 8i is not. Is this it?
    Tx.

    Different servers? Unix? If so, check OS (ulimit -a) first and then post the results. If separate machines then it might not be PGA at all.
    I would strongly suggest checking that and then posting a new, more detailed problem statement to the Database: General forum rather than posting to the Oracle Text forum (since it isn't related). Toss in info about the server type(s), memory settings that you've checked, the full error, what you're doing when you get it, etc.
    Thanks,
    Ron

  • Sql storage

    Hello Guys, when ever a sql is executed it uses the temporary tablespace storage to do the sorting right?
    very often we face the problem that the temp segment is unable to extend because the query needs more space to do the sorting.
    My question is, is there any method to get an estimate on how much storage a query needs to execute. can the information of explain plan in the filed of "BYTES" or size of the table being used in the query be of any help to determine how much storage the query needs to do the sorting in the temporary tablespace?

    when ever a sql is executed it uses the temporary tablespace storage to do the sorting right? Wrong. It only uses temp if it is unable to perform the sort in memory.
    You can not estimate, in advance, the swap space required but you can write better queries, create sorted hash clusters, or use the right indexing, to minimize the number of sorts and the size of what is being sorted.
    Without a version number, DML, and Explain Plans it is impossible to give anything other than very general advice ... but suffice it to say your basic assumption is incorrect.

  • Sql decimal datatype

    I'm using labview 7.1 with the database connectivity toolkit to interact with a sql server.  One column is of the datatype float, but when I send 0.95, it stores 0.94999999.  I've read about this before, but trying to use numeric or decimal causes a different problem.  When the column is of one of these datatypes and I do a fetch of the data, nothing in that column comes back.  I'm leaving the data as a variant in labview, so it isn't a conversion issue.  I get just a blank variant box.  It works only for float.  And the other columns all work fine. 
    Are decimal and numeric types not supported by labview, and if so how do I get around the inaccuracy of float datatypes?

    Fractional floating point numbers can often not be represented exactly in binary, even if they are nice and round in decimal.
    0.95 for example is actually 0.949999999999999955(DBL) or 0.9499999880791(SGL). There is nothing wrong with that. You simply need to set your display to only show the desired number of significant digits.
    ejoseph wrote:
    Are decimal and numeric types not supported by labview, and if so how do I get around the inaccuracy of float datatypes?
    There is no real inaccuracy. The difference between 0.94999999 and 0.95 is 0.00000001 or about 1 in 100000000! (This is just the diplayed part, the difference in real life is even less. Is your number really more precise that 52bits? (or 23bits for SGL).
    LabVIEW Champion . Do more with less code and in less time .

  • Create a table in SQL with datatype equivalent to LongBlob

    I have a mySQL or phpMyadmin table (nor sure) (with longblob fields) that I want to convert to SQL Server.
    Here is a link to a Rar with two files, the 'ORIGINAL CODE.sql' is the original code sample and the 'NEW_SQL_CODE.sql' is the code I am writing in SQL to create a database.
    Click to download the two files.
    I fail to make the insert in the 'NEW_SQL_CODE.sql', it says (translated from spanish) something like "The binary data will be truncated"
    INSERT INTO inmuebles_fotos (ci_inm, pos, foto, mini, comentario, inet, impr_cartel, impr_visita) VALUES
    (6, 0, 0xffd8ffe000104a46494600010100000100010...etc...
    I don’t know how if I have defined the wrong data type (image) equivalent to the MySQL LongBlob. All I want to do is to make that insert in SQL and save that image as jpg if possible. I don't know if it's not posible in SQL and can only
    be done in MySQL.
    Thanks for any help.

    The original table is not mine; I am just trying to save the images as .jpg in hard drive.
    Here is the original table I have that has 500Mb in pictures, in the sample there is only 1 picture:
    CREATE TABLE IF NOT EXISTS `inmuebles_fotos` (
    `ci_inm` int(10) unsigned DEFAULT NULL,
    `pos` smallint(6) DEFAULT NULL,
    `foto` longblob,
    `mini` longblob,
    `comentario` varchar(100) DEFAULT NULL,
    `inet` tinyint(3) unsigned DEFAULT '0',
    `impr_cartel` smallint(6) DEFAULT '0',
    `impr_visita` smallint(6) DEFAULT '0'
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    And here is the equivalent table in SQL that I am trying to create to import al registers so I can save the pictures from SQL Server that is what we use here.
    CREATE TABLE [dbo].[inmuebles_fotos2](
    [ci_inm] [int] NULL,
    [pos] [int] NULL,
    [foto] [image] NULL,
    [mini] [image] NULL,
    [comentario] [varchar](1) NULL,
    [inet] [int] NULL,
    [impr_cartel] [int] NULL,
    [impr_visita] [int] NULL
    Sorry for the trouble, I am trying everything I get my hands on until I get to save those images in “0x1234567890ABCDE…….” Format.
    I'll try anything you sugest me but I have only use SQL Server so that's why I'm trying this road first.
    Thanks for your help.

  • XSL transform question from XML date datatype to SQL date datatype

    Just to give an idea, I am reading some employee information in a CSV format and I have created the fileadapter to read it and parse it into coherent information where each comma separated value corresponds to a column in an employee table. One of the columns is of the date object in the database.
    So my my variable is created with a list of employees and then fed into the invoke that calls a dbadapter that does the insert. I am using a transformation to get the values from one variable into the other simply because of namespace conflicts. However the xml date will not match the sql date object as to be expected...but how do I work around it? I have a few ideas but I am not sure they are worth mentioning.
    Any suggestions?

    @@Version : ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
        May 14 2014 18:34:29
        Copyright (c) Microsoft Corporation
        Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    (1 row(s) affected)
    Compatibility level is set to 110 .
    One of the limitation states - XML columns with a depth of more than 128 nested nodes
    How do i verify this ? Thanks .
    Rajkumar Yelugu

  • Pl-sql composite datatype-record problem!!

    Hello
    I am using hr schema tables and I intend to display first_name,last_name and hire date of President.
    When I am doing join I am facing errors
    following is my code
    /* Formatted on 2009/11/23 15:19 (Formatter Plus v4.8.8) */
    DECLARE
    e1 hr.employees%ROWTYPE;
    BEGIN
    SELECT *
    INTO e1
    FROM hr.employees, hr.jobs
    WHERE hr.employees.job_id = hr.jobs.job_id
    AND hr.jobs.job_title = 'President';
    DBMS_OUTPUT.put_line (e1.first_name);
    DBMS_OUTPUT.put_line (e1.last_name);
    DBMS_OUTPUT.put_line (e1.hire_date);
    END;
    and following are the errors
    ORA-06550: line 7, column 6:
    PL/SQL: ORA-00947: not enough values
    ORA-06550: line 5, column 4:
    PL/SQL: SQL Statement ignored
    Please help
    Thank You

    Hello,
    Instead of using
    SELECT *you need to select the right columns that HR.EMPLOYEES consist of if you want to use the rowtype or declare 3 variables.
    And always use proper aliases.
    Another 'dirty' way, without any declarations at all:
    hoek&XE> begin
      2    for e1 in ( select e.*
      3                from   hr.employees e
      4                ,      hr.jobs j
      5                where  e.job_id = j.job_id
      6                and    j.job_title = 'President'
      7              )
      8    loop
      9      dbms_output.put_line (e1.first_name);
    10      dbms_output.put_line (e1.last_name);
    11      dbms_output.put_line (e1.hire_date);
    12    end loop; 
    13  end;
    14  /
    Steven
    King
    17-06-1987 00:00:00

  • Pl sql invalid datatype error for table casting(PL/SQL: ORA-00902: invalid)

    See the code snippet -
    Create or Replace Package xyz.abc as
    TYPE rec_local is record of (primary_key emp.p_key%type, nam emp.name%type,addres emp.address%type);
    Type tab_local is Table of rec_local;
    Procedure exclude_pkey (tab1 IN tab_local );
    End xyz.abc
    Create or Replace Package Body xyz.abc as
    Procedure exclude_pkey (tab1 IN tab_local );
    Cursor cur is
    select primary_key
    from table(*cast(tab1 as tab_local *)))
    where primary_key NOT IN (select primary_key
    from emp)
    BEGIN
    END exclude_pkey ;
    End abc;
    I came to know the process that for query purpose we cant use pl/sql type, it must sql type, i.e. creating object and table of that object type in sql,and use of MEMEBER OF ,but what should i do in this case where insted of IN(MEMBER OF can be used for the case of IN) ,NOT IN is used for query.
    please reply,
    thank you

    You are only selecting a single column, primary_key, in your cursor.
    You could use the built in sys.ODCINumberlist or sys.ODCIVarchar2list data types instead and pass in only the primary_key.
    Re: Passing an array to an Oracle stored procedure
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10765/ext_types_ref.htm#ADDCI5012
    If you are on an old version you can create your own types with the same definition.
    Using a cursor like that I can tell that you want to do whatever this does as slowly and inefficiently as possible though.
    Re: using cursor to sum  numbers, gives error
    Re: global temporary table row order

  • Use external SQL storage

    Can you use an external SQL server to hold TFS data? My understanding is that TFS allows up to 10 GB because it runs an internal instance of SQL Express. We need at least 15 GB. Can I configure TFS to hold the data on one of our network SQL Servers? Thanks
    for any advice.
    Benji Legaspi

    Hi Benji,
    I agree with Vladimir. You might need to use Standard Edition of SQL Server. And you can check this
    page for more information about install SQL Server for TFS.
    Best 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.

  • ORA-06500: PL/SQL: storage error

    Hi
    we faced this error while executing one of the packages.
    But when we have rerun the same mapping with out any changes i did not throw this error.
    What could be the possible reason. Do we need to change any of the database parameters.
    Thanks
    Nanda Kishore

    Nanda,
    Can you verify whether you have enough database tablespace available?
    Thanks,
    Mark.

  • Interface with SQL backend (foreign schema)?

    I'm looking for a Radius or LDAP solution using (foreign schema) SQL storage as backend.
    I do have a large user database (that must stay as-is, I only have read-only sql access) that resides on an Oracle SQL server. I know the schema and how the passwords are salted and hashed, but on the gateway I can only use Radius or LDAP as authentication protocols. This is purely for authentication, not authorization (i.e. no group memberships need to be resolved) or accounting.
    Is this possible with either ISE or ACS? I know that ACS may use Oracle, but afaik only for accounting or use it as its own underlying database (which is not what I want as the users already exist in a given schema).

    Hi All
    Do we need to download a separate DB Adapter for Connecting to SQL Server 2005.
    I have created a BPEL process using the DB Adapter provided in JDev 10.1.3.1.0
    The process deploys successfully but is erroring out at point it is trying to fetch the data from SQL Server.
    Error:
    file:/ora1/SOASuite/oraFUSNweb/bpel/domains/default/tmp/.bpel_RealInvoiceBPEL_2_de4c0630077583d27bcc9a9054da80f9.tmp/SQLServerDB.wsdl [ SQLServerDB_ptt::SQLServerDBSelect(SQLServerDBSelect_inparameters,XxdummyTestCollection) ] - WSIF JCA Execute of operation 'SQLServerDBSelect' failed due to: Could not create/access the TopLink Session.
    Please help
    thanks
    - debashis

  • Welcome to the SQL Server Disaster Recovery and Availability Forum

    (Edited 8/14/2009 to correct links - Paul)
    Hello everyone and welcome to the SQL Server Disaster Recovery and Availability forum. The goal of this Forum is to offer a gathering place for SQL Server users to discuss:
    Using backup and restore
    Using DBCC, including interpreting output from CHECKDB and related commands
    Diagnosing and recovering from hardware issues
    Planning/executing a disaster recovery and/or high-availability strategy, including choosing technologies to use
    The forum will have Microsoft experts in all these areas and so we should be able to answer any question. Hopefully everyone on the forum will contribute not only questions, but opinions and answers as well. I’m looking forward to seeing this becoming a vibrant forum.
    This post has information to help you understand what questions to post here, and where to post questions about other technologies as well as some tips to help you find answers to your questions more quickly and how to ask a good question. See you in the group!
    Paul Randal
    Lead Program Manager, SQL Storage Engine and SQL Express
    Be a good citizen of the Forum
    When an answer resolves your problem, please mark the thread as Answered. This makes it easier for others to find the solution to this problem when they search for it later. If you find a post particularly helpful, click the link indicating that it was helpful
    What to post in this forum
    It seems obvious, but this forum is for discussion and questions around disaster recovery and availability using SQL Server. When you want to discuss something that is specific to those areas, this is the place to be. There are several other forums related to specific technologies you may be interested in, so if your question falls into one of these areas where there is a better batch of experts to answer your question, we’ll just move your post to that Forum so those experts can answer. Any alerts you set up will move with the post, so you’ll still get notification. Here are a few of the other forums that you might find interesting:
    SQL Server Setup & Upgrade – This is where to ask all your setup and upgrade related questions. (http://social.msdn.microsoft.com/Forums/en-US/sqlsetupandupgrade/threads)
    Database Mirroring – This is the best place to ask Database Mirroring how-to questions. (http://social.msdn.microsoft.com/Forums/en-US/sqldatabasemirroring/threads)
    SQL Server Replication – If you’ve already decided to use Replication, check out this forum. (http://social.msdn.microsoft.com/Forums/en-US/sqlreplication/threads)
    SQL Server Database Engine – Great forum for general information about engine issues such as performance, FTS, etc. (http://social.msdn.microsoft.com/Forums/en-US/sqldatabaseengine/threads)
    How to find your answer faster
    There is a wealth of information already available to help you answer your questions. Finding an answer via a few quick searches is much quicker than posting a question and waiting for an answer. Here are some great places to start your research:
    SQL Server 2005 Books Onlinne
    Search it online at http://msdn2.microsoft.com
    Download the full version of the BOL from here
    Microsoft Support Knowledge Base:
    Search it online at http://support.microsoft.com
    Search the SQL Storage Engine PM Team Blog:
    The blog is located at https://blogs.msdn.com/sqlserverstorageengine/default.aspx
    Search other SQL Forums and Web Sites:
    MSN Search: http://www.bing.com/
    Or use your favorite search engine
    How to ask a good question
    Make sure to give all the pertinent information that people will need to answer your question. Questions like “I got an IO error, any ideas?” or “What’s the best technology for me to use?” will likely go unanswered, or at best just result in a request for more information. Here are some ideas of what to include:
    For the “I got an IO error, any ideas?” scenario:
    The exact error message. (The SQL Errorlog and Windows Event Logs can be a rich source of information. See the section on error logs below.)
    What were you doing when you got the error message?
    When did this start happening?
    Any troubleshooting you’ve already done. (e.g. “I’ve already checked all the firmware and it’s up-to-date” or "I've run SQLIOStress and everything looks OK" or "I ran DBCC CHECKDB and the output is <blah>")
    Any unusual occurrences before the error occurred (e.g. someone tripped the power switch, a disk in a RAID5 array died)
    If relevant, the output from ‘DBCC CHECKDB (yourdbname) WITH ALL_ERRORMSGS, NO_INFOMSGS’
    The SQL Server version and service pack level
    For the “What’s the best technology for me to use?” scenario:
    What exactly are you trying to do? Enable local hardware redundancy? Geo-clustering? Instance-level failover? Minimize downtime during recovery from IO errors with a single-system?
    What are the SLAs (Service Level Agreements) you must meet? (e.g. an uptime percentage requirement, a minimum data-loss in the event of a disaster requirement, a maximum downtime in the event of a disaster requirement)
    What hardware restrictions do you have? (e.g. “I’m limited to a single system” or “I have several worldwide mirror sites but the size of the pipe between them is limited to X Mbps”)
    What kind of workload does you application have? (or is it a mixture of applications consolidated on a single server, each with different SLAs) How much transaction log volume is generated?
    What kind of regular maintenance does your workload demand that you perform (e.g. “the update pattern of my main table is such that fragmentation increases in the clustered index, slowing down the most common queries so there’s a need to perform some fragmentation removal regularly”)
    Finding the Logs
    You will often find more information about an error by looking in the Error and Event logs. There are two sets of logs that are interesting:
    SQL Error Log: default location: C:\Program Files\Microsoft SQL Server\MSSQL.#\MSSQL\LOG (Note: The # changes depending on the ID number for the installed Instance. This is 1 for the first installation of SQL Server, but if you have mulitple instances, you will need to determine the ID number you’re working with. See the BOL for more information about Instance ID numbers.)
    Windows Event Log: Go to the Event Viewer in the Administrative Tools section of the Start Menu. The System event log will show details of IO subsystem problems. The Application event log will show details of SQL Server problems.

    hi,I have a question on sql database high availability. I have tried using database mirroring, where I am using sql standard edition, in this database mirroring of synchronous mode is the only option available, and it is giving problem, like sql time out errors on my applicatons since i had put in the database mirroring, as asynchronous is only available on enterprise version, is there any suggestions on this. thanks ---vijay

  • Errors when Creating Aggregate Tables in OBIEE 11.1.1.6 within SQL server

    Hi All,
    I was trying to create an aggregate table in OBIEE 11.1.1.6 within SQL Server. The sql was generated successfully as below. But an error occurred when I use NQCMD to execute the sql and the following error showed:
    1. SQL for creating Aggregate Table:
    create aggregates
    "ag_Measure"
    for "ASOBI_DTT_Demo"."Measure"("ValidVIPCnt")
    at levels ("ASOBI_DTT_Demo"."日期"."月", "ASOBI_DTT_Demo"."門市品牌"."門市品牌", "ASOBI_DTT_Demo"."門市類別"."門市類別", "ASOBI_DTT_Demo"."內創門市"."內創門市", "ASOBI_DTT_Demo"."門市/倉庫"."門市/倉庫", "ASOBI_DTT_Demo"."門市群組"."門市群組", "ASOBI_DTT_Demo"."門市行政區課"."行政區", "ASOBI_DTT_Demo"."門市地區"."城市")
    using connection pool "ASOBI_DTT_Demo"."ASOBI_System10"
    in "ASOBI_DTT_Demo"."ASOBI"."dbo";
    2. Error Message:
    "ag_Measure"
    for "ASOBI_DTT_Demo"."Measure"("ValidVIPCnt")
    at levels ("ASOBI_DTT_Demo"."日期"."月", "ASOBI_DTT_Demo"."門市品牌"."門市品牌"
    , "ASOBI_DTT_Demo"."門市類別"."門市類別", "ASOBI_DTT_Demo"."內創門市"."內創門市"
    , "ASOBI_DTT_Demo"."門市/倉庫"."門市/倉庫", "ASOBI_DTT_Demo"."門市群組"."門市群
    組", "ASOBI_DTT_Demo"."門市行政區課"."行政區", "ASOBI_DTT_Demo"."門市地區"."城市
    using connection pool "ASOBI_DTT_Demo"."ASOBI_System10"
    in "ASOBI_DTT_Demo"."ASOBI"."dbo"
    [343][State: 37000] [Microsoft][SQL Server Native Client 10.0][SQL Server]CREATE
    、DROP or ALTER 陳述式中使用未知的物件類型 'aggregates'。
    Statement execute failed
    Which means "Using unknown object type 'aggregates' in CREATE. DROP or ALTER statements" in English.
    Can anyone give me a suggestion for this error?? Many thanks!!!

    Hi Martin,
    I guess, I was not clear enough. Let me try again
    How Aggregate Persistence works in OBIEE?
    Once you are done choosing options in the Aggregate Persistence wizard, it generates an intelligent Query.
    What query is it?
    If you happen to understand the query, it is not like any ANSI standard SQL (I would say DDL) query. As you might have noticed there are no SQL Server datatypes, lengths, keys, constraints etc. This query can only be understood by the BI Server.
    How do I issue this query?
    Since the logical query could only be understood by BI Server, it has to be issued only to BI Server Engine using some tool viz NQCMD in this case.
    What does issuing this query using NQCMD do?
    The execution steps are as follows, the moment the query is issue via NQCMD
    Aggregate Persistent Wiz Generate Query ----- Issued to ---> NQCMD ----- Passes the logical query to ---> BI Server ----- Parses the query ---> Builds the corresponding physical DDL statements Issued --->To the Database --- If successful ---> .RPD is automatically updated with the aggregated sources etc.
    How do I pass the query to BI Server using NQCMD?
    The format of issuing this logical query to BI Server using NQCMD is
    nqcmd -d <Data Source Name> -u <Analytics UserId> -p <Password> -s <command> > output.log
    where
    <Data Source Name> : Is the DSN name which OBIPS uses to talk to Oracle BI Server. Yes, it's the very same DSN that can be found in InstanceConfig.xml
    <Analytics UserID> : Any user in obiee with admin privileges.
    <Password> : Password of the obiee UserId
    <Command> : Logical SQL Command which you already have handy.
    Hope I was good this time..
    Dhar

  • Reading milliseconds from Sql server into oracle 10g

    Hi,
    We have a very time sensitive pressing requirements to be addressed immediately.
    We need to read the date time column from sql server 2008 into oracle 10g.
    We have a dblink established between the two servers and have tried to use sql server and sql native client 10 driver to read the dates from sql into oracle.This we are able to do very successfully.
    The issue is in reading milliseconds stored in sql server.The millisecond part comes in as 00000 from sqlserver to oracle.These milliseconds are needed to identlfy the unique records.
    For instance
    SQL SERVER Oracle
    source_id source id
    01/01/2012 6:30:35:456 01/01/2012 6:30:35:000000.
    Im issuing my query through Toad via Oracle to remote sql server using a dblink which connects using HS ODBC connection to sql server 2008(remote).
    We have no control over sql server Db as this is remote third party DB.We just have select access to their tables to bring into our own oracle DB.
    Any insight or help will be much appreciated.

    Hi,
    Could you please send the following information -
    - what version of HSODBC are you using ? Is it a 10.2 version ?
    - what is the SQL*Server datatype of the column you are reading ?
    - from Oracle could you issue -
    describe sql_server_table@hsodbc
    - what is the Oracle datatype shown for the column ?
    Could you also run your tests using SQLPLUS instead of TOAD ? We don't support TOAD and need to know if the problem also happens when using SQLPLUS, to avoid it being a TOAD problem.
    Also, 10.2 HSODBC is now desupported and you should be using the 11g Database Gateway for ODBC (DG4ODBC) which is a direct replacement for HSODBC. To use DG4ODBC your RDBMS needs to be at 10.2.0.4 or higher and DG4ODBC should be installed in a completely separate ORACLE_HOME from the existing 10.2 install.
    Regards,
    Mike

Maybe you are looking for

  • Unable to create visual composer table view from the Bex Query

    Hi I am trying to create the visual composer lay out from a Bex query. The Bex query contains a set of Key figures and a structure. These key figure and structure combination is forming a table in the query output. Key figure parameters are coming as

  • WEP Password works on all Wireless Mac computers except Intel

    O.K. So I am not a network wonk but hear me out. I am using an SMC wireless router which works fine and I have it connected to my G4 Cube for the past 3 years via ethernet. I also have a G3 Pismo and G4 Titanium powerbooks with airport cards that see

  • How rac instance start

    Hello everybody, I have a question. With database instance spfile in asm, when database instance start, it will need asm extend map file to read the spfile. After the instance start, extend map file will locate in share pool. But before instance star

  • XSLT 1 or 2?

    A developer has produced for us an XSLT transform. When run outside FrameMaker it works fine, and the resulting XML imports into FrameMaker. With a view to streamlining the process, I am trying to call the XSLT by adding it to the structured applicat

  • Configuration Changes in Syslog

    can I configure Cisco Routers/switches to send syslog the IOS commands that are entered on Cisco Device? My objective is to keep a record of changes that are/were made to the network devices.