Database storage and size

We are just setting up the live RoboSource database. In order
to determine which database server the admins will place the
database, they would like to get a rough estimate of the size of
the database. I realize that a large part of this answer depends on
the number of projects and the size of those projects.
What I am looking for is the method used for stoage of the
changes. Does RoboSource store just the delta (changes) or does it
store a complete copy of the changed files.
We have some projects that may not be that large, but are
changed daily and sometimes mutiple times in a day. So if the files
are saved for each change, the database could grow very large very
quickly.
I have looked in the help files and on the web with little or
no results.
Thanks,
Jay

Hi Jay and welcome to the RH community.
To be honest the think the reason why you have not been able
to find out the imformation you require is because it is so open to
outside influences (e.g. file size, file content, etc.) to make it
a fairly pointless exercise. What is a good size database for one
user would be completely inadequate to another.
I don't know whether the DB stores delta changes or a
complete copy as I don't use RH's source control software
perferring to use another supplier. I can say that there appear to
be no hard or fast rules with what is stored. Certain file types
(e.g. flat text files) may store delta data because it is easy to
know what has changed from one file version to another. Binary
files for example make this much more difficult so it common for a
copy of a file to be stored. To complicate things, some source
control applications have a file size limit. Microsoft's VSS is 2GB
for example.
Not sure if any of the above helps
Maybe the way forward is to create a test database
and perform some changes and see how the database size grows. From
there you'll be able to make a better guess for the live DB
size.

Similar Messages

  • Icloud storage and size limits

    I want to purchase some Icloud storage. I know the max come in 50GB, but want to know if I can purchase more and combine the two together. So In an example. can I purchase 50GB and another 50GB and and use the total amount together on the same Itunes account? I have a frien that has a lot of music from CD's and also purchases. we want to get the whole amount on a cloud service. we currently use an external storage device, but need something more convenient. I think he has close to 80 GB of music.         

    You can't combine storage like that 50 GB is the largest you can acquire.
    However iTunes Match doesn't use your iCloud storage any storage it uses is free, but it does have limitations, it will only store up to 25,000 matched tracks.

  • Swapping and Database Buffer Cache size

    I've read that setting the database buffer cache size too large can cause swapping and paging. Why is this the case? More memory for sql data would seem to not be a problem. Unless it is the proportion of the database buffer to the rest of the SGA that matters.

    Well I am always a defender of the large DB buffer cache. Setting the bigger db buffer cache alone will not in any way hurt Oracle performance.
    However ... as the buffer cache grows, the time to determine 'which blocks
    need to be cleaned' increases. Therefore, at a certain point the benefit of a
    larger cache is offset by the time to keep it sync'd to the disk. After that point,
    increasing buffer cache size can actually hurt performance. That's the reason why Oracle has checkpoint.
    A checkpoint performs the following three operations:
    1. Every dirty block in the buffer cache is written to the data files. That is, it synchronizes the datablocks in the buffer cache with the datafiles on disk.
    It's the DBWR that writes all modified databaseblocks back to the datafiles.
    2. The latest SCN is written (updated) into the datafile header.
    3. The latest SCN is also written to the controlfiles.
    The following events trigger a checkpoint.
    1. Redo log switch
    2. LOG_CHECKPOINT_TIMEOUT has expired
    3. LOG_CHECKPOINT_INTERVAL has been reached
    4. DBA requires so (alter system checkpoint)

  • Command of database used and free size

    Good Day for all of you .
    i need command to check whole database used and free size and table spaces , datafile used and free size.
    your help and cooperation highly appreciated.

    Query 1:
    select case grouping(Tablespace_Name)
    when 0 then Tablespace_Name when 1 then '======> TOTAL <======' end Tablespace_Name,
    autoextensible AutExt,trunc((sum(Bytes)/1024/1024),2)MB_SPC_OCCUP,
    trunc((decode(sum(MaxBytes),0,sum(bytes),sum(MaxBytes))/1024/1024),2) MB_TOT_AVAIL,
    trunc((decode(sum(MaxBytes),0,0,sum(MaxBytes)-sum(Bytes))/1024/1024),2) MB_Free_Spc,
    trunc(decode(sum(MaxBytes),0,0,
    (sum(MaxBytes)- sum(Bytes))/sum(MaxBytes)*100),2)Pct_Free_Spc,
    status from dba_data_files group by cube(Tablespace_Name), Autoextensible, status
    order by status,autoextensible,Tablespace_Name desc;
    Query 2:
    select (select decode(extent_management,'LOCAL','*',' ') from dba_tablespaces where tablespace_name
    = b.tablespace_name)
    || nvl(b.tablespace_name, nvl(a.tablespace_name,'UNKOWN')) name,
    kbytes_alloc kbytes,
    kbytes_alloc-nvl(kbytes_free,0) used,
    nvl(kbytes_free,0) free,
    ((kbytes_alloc-nvl(kbytes_free,0))/kbytes_alloc)*100 pct_used,
    nvl(largest,0) largest,
    nvl(kbytes_max,kbytes_alloc) Max_Size,
    decode(kbytes_max, 0, 0, (kbytes_alloc/kbytes_max)*100) pct_max_used
    from ( select sum(bytes)/1024 Kbytes_free,
    max(bytes)/1024 largest,
    tablespace_name
    from sys.dba_free_space
    group by tablespace_name ) a,
    ( select sum(bytes)/1024 Kbytes_alloc,
    sum(maxbytes)/1024 Kbytes_max,
    tablespace_name
    from sys.dba_data_files
    group by tablespace_name
    union all
    select sum(bytes)/1024 Kbytes_alloc,
    sum(maxbytes)/1024 Kbytes_max,
    tablespace_name
    from sys.dba_temp_files
    group by tablespace_name )b
    where a.tablespace_name (+) = b.tablespace_name
    Query 3:
    select b.tablespace_name, tbs_size SizeMb, a.free_space FreeMb
    from
    (select tablespace_name, round(sum(bytes)/1024/1024 ,2) as free_space
    from dba_free_space group by tablespace_name) a,
    (select tablespace_name, sum(bytes)/1024/1024 as tbs_size
    from dba_data_files group by tablespace_name
    UNION
    select tablespace_name, sum(bytes)/1024/1024 tbs_size
    from dba_temp_files
    group by tablespace_name ) b
    where a.tablespace_name(+)=b.tablespace_name
    Query 4:
    col "Tablespace" for a22
    col "Used MB" for 99,999,999
    col "Free MB" for 99,999,999
    col "Total MB" for 99,999,999
    select df.tablespace_name "Tablespace",
    totalusedspace "Used MB",
    (df.totalspace - tu.totalusedspace) "Free MB",
    df.totalspace "Total MB",
    round(100 * ( (df.totalspace - tu.totalusedspace)/ df.totalspace))
    "Pct. Free"
    from
    (select tablespace_name,
    round(sum(bytes) / 1048576) TotalSpace
    from dba_data_files
    group by tablespace_name) df,
    (select round(sum(bytes)/(1024*1024)) totalusedspace, tablespace_name
    from dba_segments
    group by tablespace_name) tu
    where df.tablespace_name = tu.tablespace_name ;
    Query 5:
    select t1.tablespace_name,
    sum(decode(t1.autoextensible, 'NO', t1.bytes, 'YES', t1.maxbytes))/1024 max_size,
    sum(nvl(t2.free, 0) + decode(t1.autoextensible, 'NO', 0 , 'YES', t1.maxbytes -
    t1.bytes))/1024 max_free,
    sum(t1.bytes)/1024 current_size,
    sum(nvl(t2.free, 0))/1024 current_free
    from (select file_id, file_name, tablespace_name, bytes, maxbytes, autoextensible from
    dba_data_files) t1
    left outer join
    (select file_id, sum(bytes) free from dba_free_space group by file_id) t2
    on t1.file_id = t2.file_id
    group by tablespace_name
    You can choose from any one or more as your requirement / choice.
    Regards
    Girish

  • Query on Database Export and Import

    Hi Techies,
    Currently we are running our Database on Oracle 10g and SAP on4. and OS is HP UX 11.11.
    We have a plan to migrate our HW from PA-RISC to Itanium and at the time of Production migration we are planning to use Export and Import method to get free space.
    Our plan is as below:
    We will not touch the original Production, Just restore the DB into new server.
    And post restore we will create the space on new server equallent to our DB size.
    Then will perform DB export from the new system to the null space
    Then Import the DB into same system.
    Here my queries are:
    1) Is it possible to export and Import the Database from/to null space?
    2) We have 2T size of DB, And good resources like 32G Ram, 12 CPUs etc. How much time can be expected to perform Export and Import?
    3) What are the challenges we can expect?
    4) Minimum how much of free space we can expect with this option?
    Regards,
    Nick Loy

    So with test runs I can expect rapid speed in DB export and Import (1T/H)........If I have good system then Database export and Import gets complete within 2 hrs (Database size is 2T).
    Well 1tb is at the very top of expectations here, you should be careful. I did an export/import of a 1.5tb database of an ERP system lately. We did parallel export (40 processes) / import (20 processes) using distmon, source was HP IA64, target Linux x64_64. The disks were midrange SAN storage systems on both sides.  After tuning we managed to do in 6-7hrs.
    But in your case, if you only have one system, this could mean you have to drop the source db first and then recreate the target db on the same disks. The creation of the 1-2tb database files alone can take up more than 1 hour , besides that you don't have an easy fallback.
    If you have a test system that is comparable from size and hardware perspective, then i suggest you try a test export to get a feeling for it.
    What about the Online re-org of database? What would be the best way to get free space within minimum downtime?
    Theoretically you should be able to gain more or less the same amount of space doing online reorgs. The advantage is less downtime, the downside is the reorgs will be running over a longer time period and put additional load on the system.
    Cheers Michael

  • Database storage

    I have a confusion regarding the database storage mechanism.
    I have created a tablespace
    CREATE TABLESPACE TEST
    DATAFILE '..\test01.DBF'
    SIZE 152k
    SELECT bytes FROM DBA_FREE_SPACE
    WHERE tablespace_name ='TEST'
    It shows 65536 bytes.
    But it is smaller then 152k.
    Why is it so??
    Please help me out.

    hello,
    as you have not specified extent clause i think it is initial extent oracle creates of 64k (65536/1024=64k) as it is ...oracle system-managed extents
    have a look at this
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/logical.htm#g23847
    this is extract from oracle docs
    For system-managed extents, Oracle determines the optimal
    size of additional extents, with a minimum extent size of 64 KB.
    If the tablespaces are created with 'segment space management auto',
    and if the database block size is 16K or higher, then Oracle manages
    segment size by creating extents with a minimum size of 1M.
    This is the default for permanent tablespaces.experts please correct me.....if i am wrong
    thanks and regards
    VD
    Edited by: Dixit on Sep 8, 2009 2:15 AM
    Edited by: Dixit on Sep 8, 2009 2:16 AM
    Edited by: Dixit on Sep 8, 2009 2:18 AM

  • Database Copy LUN Size

    Hi, 
    Quick question about database copies and the storage requirements. 
    I understand that for a DB copy, each MBX server has to have the same drive letters for the relevant drives/LUNS, but what
    about size? 
    Do the drives have to be the same size? 
    The reason for asking is that we already have two MBX servers and all our DBs have copies on drives that are exactly the same
    size. We are looking to replace the underlying hardware one by one (i.e. introduce a new MBX server to the DAG and copies, then eject the old one, rinse and repeat), and are hoping to increase the capacity of the drives at the same time. 
    Thanks.

    Hi,
    Agreed. DAG members should have the same drive letters, same LUN sizes.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Changing of data class and size category for keyfigures .

    Hi,
    I am not able to change the data class and size category for keyfigures .
    can you please let me know how to enable the changing of data class and size category for keyfigure under Maintain DB storage parameters.

    Ok then it sounds like your primary key of 8 fields and secondary index of 3 non-unique fields appear somewhat similar to the database and it wrongly uses the secondary index. Perhaps you can try to declare the table as a SORTED table with index fields as key. I doubt this will do any good, but you can try.
    You can try to deactivate the sec. index if it is not being used.
    Or by far the best but also debatable, try to pass hints to the SQL parser by %_hints statement. Please refer to SAP note 129385 for details on hints in general and note 772497 for various hints statements for  ORACLE DB. This will surely make the DB interface use the primary index and the update would be faster. But with 1 million records, hopefully you are not looking at response time in micro seconds, are you?
    rgds,
    Prabhu

  • OLAP and version on EBS database upgrade and migration

    Hi all,
    Recently I have upgraded EBS database to 11.2.0.3. When I querey " select COMP_ID,COMP_NAME,VERSION,STATUS
    from dba_registry; " getting below output
    SQL> select COMP_ID,COMP_NAME,VERSION,STATUS,MODIFIED from dba_registry;
    COMP_ID                        COMP_NAME                                    VERSION                        STATUS     
    ODM                            Oracle Data Mining                            11.2.0.3.0                     VALID      
    CONTEXT                        Oracle Text                                  11.2.0.3.0                     VALID      
    AMD                            OLAP Catalog                                  11.2.0.3.0                     VALID    
    SDO                            Spatial                                            11.2.0.3.0                     VALID      
    ORDIM                          Oracle Multimedia                            11.2.0.3.0                     VALID      
    XDB                            Oracle XML Database                         11.2.0.3.0                     VALID      
    EXF                            Oracle Expression Filter                       11.2.0.3.0                     VALID      
    CATALOG                        Oracle Database Catalog Views            11.2.0.3.0                     VALID      
    CATPROC                        Oracle Database Packages and Types       11.2.0.3.0                     VALID      
    RAC                            Oracle Real Application Clusters                 11.2.0.3.0                     INVALID    
    JAVAVM                         JServer JAVA Virtual Machine                11.2.0.3.0                     VALID      
    XML                            Oracle XDK                                           11.2.0.3.0                     VALID      
    CATJAVA                        Oracle Database Java Packages            11.2.0.3.0                     VALID      
    APS                            OLAP Analytic Workspace                      11.2.0.3.0                     VALID      
    XOQ                            Oracle OLAP API                                 11.2.0.3.0                     VALID      
    15 rows selected.I thought everything goes well.
    Now I am migrating EBS from 32 bit linux to 64 bit and when I follow the note for OLAP AW Note: 579234.1 "verify OLAP was in use ". When I qurey " select DBID,NAME,VERSION,DETECTED_USAGES,CURRENTLY_USED from dba_feature_usage_statistics "
    3874995160 Virtual Private Database (VPD)                                   10.2.0.5.0                      1 TRUE
    3874995160 XDB                                                              10.2.0.5.0                      1 TRUE
    3874995160 LOB                                                              10.2.0.5.0                      1 TRUE
    3874995160 Object                                                           10.2.0.5.0                      1 TRUE
    3874995160 Extensibility                                                    10.2.0.5.0                      1 TRUE
    3874995160 ASO native encryption and checksumming                           11.2.0.3.0                      0 FALSE
    103678515 Advanced Replication                                             10.2.0.3.0                      0 FALSE
    103678515 Advanced Security                                                10.2.0.3.0                      0 FALSE
    103678515 Audit Options                                                    10.2.0.3.0                      0 FALSE
    103678515 Automatic Database Diagnostic Monitor                            10.2.0.3.0                      0 FALSE
    103678515 Automatic Segment Space Management (system)                      10.2.0.3.0                    144 TRUE
    103678515 Automatic Segment Space Management (user)                        10.2.0.3.0                    144 TRUE
    103678515 Messaging Gateway                                                10.2.0.3.0                      0 FALSE
    103678515 MTTR Advisor                                                     10.2.0.3.0                      0 FALSE
    103678515 Multiple Block Sizes                                             10.2.0.3.0                      0 FALSE
    103678515 OLAP - Analytic Workspaces                                       10.2.0.3.0                    143 TRUE
    103678515 OLAP - Cubes                                                     10.2.0.3.0                      0 FALSE
    103678515 Oracle Managed Files                                             10.2.0.3.0                      0 FALSE
    103678515 Parallel SQL DDL Execution                                       10.2.0.3.0                     71 FALSE
    103678515 Parallel SQL DML Execution                                       10.2.0.3.0                     68 FALSE
      103678515 Virtual Private Database (VPD)                                   10.2.0.3.0                    144 TRUE
    103678515 Advanced Replication                                             10.2.0.5.0                      0 FALSE
    103678515 ASO native encryption and checksumming                           10.2.0.5.0                      0 FALSE
    103678515 Audit Options                                                    10.2.0.5.0                      0 FALSE
    103678515 Automatic Database Diagnostic Monitor                            10.2.0.5.0                      0 FALSE
    103678515 Automatic Segment Space Management (system)                      10.2.0.5.0                     25 TRUE
    103678515 Automatic Segment Space Management (user)                        10.2.0.5.0                     25 TRUE
    103678515 Automatic SQL Execution Memory                                   10.2.0.5.0                     25 TRUE
    103678515 Automatic Storage Manager                                        10.2.0.5.0                      0 FALSE
    103678515 Automatic Undo Management                                        10.2.0.5.0                     25 TRUE
    103678515 Automatic Workload Repository                                    10.2.0.5.0                      0 FALSE
    103678515 AWR Report                                                       10.2.0.5.0                      0 FALSE
    103678515 Change-Aware Incremental Backup                                  10.2.0.5.0                      0 FALSE
    103678515 CSSCAN                                                           10.2.0.5.0                      0 FALSE
    103678515 Character Semantics                                              10.2.0.5.0                      0 FALSE
    103678515 Character Set                                                    10.2.0.5.0                     25 TRUE
    103678515 Data Guard                                                       10.2.0.5.0                      0 FALSE
    103678515 Data Guard Broker                                                10.2.0.5.0                      0 FALSE
    103678515 Data Mining                                                      10.2.0.5.0                      0 FALSE
    103678515 Dynamic SGA                                                      10.2.0.5.0                      0 FALSE
      103678515 MTTR Advisor                                                     10.2.0.5.0                      0 FALSE
    103678515 Multiple Block Sizes                                             10.2.0.5.0                      0 FALSE
    103678515 OLAP - Analytic Workspaces                                       10.2.0.5.0                     25 TRUE
    103678515 OLAP - Cubes                                                     10.2.0.5.0                      0 FALSE
    103678515 Oracle Managed Files                                             10.2.0.5.0                      0 FALSE
    103678515 Parallel SQL DDL Execution                                       10.2.0.5.0                      1 FALSE
    103678515 Parallel SQL DML Execution                                       10.2.0.5.0                      0 FALSE
    103678515 Parallel SQL Query Execution                                     10.2.0.5.0                     22 TRUE
      103678515 Recovery Manager (RMAN)                                          10.2.0.5.0                     25 TRUE
    103678515 RMAN - Disk Backup                                               10.2.0.5.0                     24 TRUE
    103678515 RMAN - Tape Backup                                               10.2.0.5.0                     25 TRUE
    103678515 Resource Manager                                                 10.2.0.5.0                      0 FALSE
    103678515 SQL Tuning Set                                                   10.2.0.5.0                      0 FALSE
      103678515 Streams (user)                                                   10.2.0.5.0                     25 TRUE
    103678515 Transparent Gateway                                              10.2.0.5.0                      0 FALSE
    103678515 Undo Advisor                                                     10.2.0.5.0                      0 FALSE
    103678515 Virtual Private Database (VPD)                                   10.2.0.5.0                     25 TRUE
    103678515 XDB                                                              10.2.0.5.0                     25 TRUE
    103678515 LOB                                                              10.2.0.5.0                     25 TRUE
    103678515 Object                                                           10.2.0.5.0                     25 TRUE
    103678515 Extensibility                                                    10.2.0.5.0                     25 TRUE
    103678515 Change Data Capture                                              10.2.0.5.0                      0 FALSE
    103678515 Materialized Views (User)                                        10.2.0.5.0                     25 TRUE
    3874453699 Advanced Replication                                             10.2.0.5.0                      0 FALSE
    3874453699 ASO native encryption and checksumming                           10.2.0.5.0                      0 FALSE
    3874453699 Audit Options                                                    10.2.0.5.0                      0 FALSE
    3874453699 Data Mining                                                      10.2.0.5.0                      0 FALSE
    3874453699 Dynamic SGA                                                      10.2.0.5.0                      0 FALSE
    3874453699 EM Database Control                                              10.2.0.5.0                      0 FALSE
    3874453699 EM Grid Control                                                  10.2.0.5.0                      0 FALSE
    3874453699 MTTR Advisor                                                     10.2.0.5.0                      0 FALSE
    3874453699 Multiple Block Sizes                                             10.2.0.5.0                      0 FALSE
    3874453699 OLAP - Analytic Workspaces                                       10.2.0.5.0                      1 TRUE
    3874453699 OLAP - Cubes                                                     10.2.0.5.0                      0 FALSE
    3874453699 Oracle Managed Files                                             10.2.0.5.0                      0 FALSE
    3874453699 Parallel SQL DDL Execution                                       10.2.0.5.0                      0 FALSE
    3874453699 Parallel SQL DML Execution                                       10.2.0.5.0                      0 FALSE
    3874453699 Parallel SQL Query Execution                                     10.2.0.5.0                      0 FALSE
    3874453699 Resource Manager                                                 10.2.0.5.0                      0 FALSE
    3874453699 Server Parameter File                                            10.2.0.5.0                      1 TRUE
    3874453699 Shared Server                                                    10.2.0.5.0                      0 FALSE
    3874453699 Spatial                                                          10.2.0.5.0                      1 TRUE
    3874453699 Locator                                                          10.2.0.5.0                      0 FALSE
    3874995160 Partitioning (user)                                              11.2.0.3.0                      1 TRUE
    3874995160 Services                                                         11.2.0.3.0                      1 TRUE
    3874995160 Oracle Java Virtual Machine (system)                             11.2.0.3.0                      1 TRUE
    446 rows selected.This is cloned instanse from from production.
    1 - I can see different DBID for the same and for some DBID it is showing different version. any problem during upgrade ( 10.2.0.3 -> 10.2.0.5 - one year back) and (10.2.0.5 to 11.2.0.3) ?
    If any problem, please let me know what I can do to fix.
    2 - For OLAP details :
    SQL> select DBID,NAME,VERSION,DETECTED_USAGES,CURRENTLY_USED from dba_feature_usage_statistics where NAME like 'OLAP%';
    DBID NAME VERSION DETECTED_USAGES CURRE
    103678515 OLAP - Analytic Workspaces 10.2.0.3.0 143 TRUE
    103678515 OLAP - Analytic Workspaces 10.2.0.5.0 25 TRUE
    3874453699 OLAP - Analytic Workspaces 10.2.0.5.0 1 TRUE
    3874995160 OLAP - Analytic Workspaces 10.2.0.5.0 1 TRUE
    3874995160 OLAP - Analytic Workspaces 11.2.0.3.0 1 TRUE
    103678515 OLAP - Cubes 10.2.0.3.0 0 FALSE
    103678515 OLAP - Cubes 10.2.0.5.0 0 FALSE
    3874453699 OLAP - Cubes 10.2.0.5.0 0 FALSE
    3874995160 OLAP - Cubes 10.2.0.5.0 0 FALSE
    3874995160 OLAP - Cubes 11.2.0.3.0 0 FALSE
    Do I need to do anything for export olap AW ?
    3 - Remobe OLAP from 32 bit. After following the steps mentioned in note: 352306.1 am getting invalid objects with object name start with OLAP.
    SQL> select owner, object_name, object_type from dba_objects where status <> 'VALID';
    OWNER OBJECT_NAME OBJECT_TYPE
    SYS OLAPIBOOTSTRAP FUNCTION
    SYS OLAPIHANDSHAKE FUNCTION
    PUBLIC OLAPIBOOTSTRAP SYNONYM
    PUBLIC OLAPIHANDSHAKE SYNONYM
    Do I need to remove these objects manually?
    Thanks,

    1 - I can see different DBID for the same and for some DBID it is showing different version. any problem during upgrade ( 10.2.0.3 -> 10.2.0.5 - one year back) and (10.2.0.5 to 11.2.0.3) ?
    If any problem, please let me know what I can do to fix. What do you mean by "any problem during upgrade"?
    2 - For OLAP details :
    SQL> select DBID,NAME,VERSION,DETECTED_USAGES,CURRENTLY_USED from dba_feature_usage_statistics where NAME like 'OLAP%';
    DBID NAME VERSION DETECTED_USAGES CURRE
    103678515 OLAP - Analytic Workspaces 10.2.0.3.0 143 TRUE
    103678515 OLAP - Analytic Workspaces 10.2.0.5.0 25 TRUE
    3874453699 OLAP - Analytic Workspaces 10.2.0.5.0 1 TRUE
    3874995160 OLAP - Analytic Workspaces 10.2.0.5.0 1 TRUE
    3874995160 OLAP - Analytic Workspaces 11.2.0.3.0 1 TRUE
    103678515 OLAP - Cubes 10.2.0.3.0 0 FALSE
    103678515 OLAP - Cubes 10.2.0.5.0 0 FALSE
    3874453699 OLAP - Cubes 10.2.0.5.0 0 FALSE
    3874995160 OLAP - Cubes 10.2.0.5.0 0 FALSE
    3874995160 OLAP - Cubes 11.2.0.3.0 0 FALSE
    Do I need to do anything for export olap AW ?Why to export OLAP AW? And is this output from prod or dev?
    3 - Remobe OLAP from 32 bit. After following the steps mentioned in note: 352306.1 am getting invalid objects with object name start with OLAP.
    SQL> select owner, object_name, object_type from dba_objects where status <> 'VALID';
    OWNER OBJECT_NAME OBJECT_TYPE
    SYS OLAPIBOOTSTRAP FUNCTION
    SYS OLAPIHANDSHAKE FUNCTION
    PUBLIC OLAPIBOOTSTRAP SYNONYM
    PUBLIC OLAPIHANDSHAKE SYNONYM
    Do I need to remove these objects manually?Yes. Please see (Invalid OLAPIBOOTSTRAP, OLAPIHANDSHAKE, GENINTERRUPTABLEINTERFACE Objects After Removing Olap from 11g [ID 1377048.1]) for details.
    Thanks,
    Hussein

  • I cannot access my ipnoe due to i get a notification saying Not Enouhh Storage and i cannot get out of it or go to settings please help what can i do to fix this problem?

    I cannot acces my IPhone due to i get a notification saying that i dont have enough storage and i need to back it up with ICloud but it wont let me click close or settings there for i cannot recieve calls or acces my email or text messages. I even tried turning off the power but it wont let me do anything please help !

    If the iPhone won't Restart you should be able to Reset it. Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    For the future (in case you don't' know), go to Settings > iCloud > Storage & Backup > Manage Storage, and choose your Device under the Backups list.
    Under the Backup Options turn off anything you don't care about (being backed up, that is). This will let you reduce the backup size so that it fits in iCloud again. You can also delete the current backup here.
    You should also check Settings > General > Usage and look at how much data each app is storing. Identify problem apps and go clean out unwanted files.
    Great resource as well http://support.apple.com/kb/HT5262
    Hope this helps!

  • I need recommendations in purchasing an external hard drive, to back up everything in my computer. What brand and Size?

    I have a mid 2010 iMac, version 10.8.2, memory 4GB, 1TB sata disk.
    Apple sent me an e-mail last year stating that my imac maybe affected to a recall. They said I have to back up my computer before sending it in to them. So its a great excuse to purchase an external hard drive.
    But I am clueless. I would like to know what brand and size of memory is recommened for my imac and my needs. I will be mostly be backing up homevideos and alot of pictures, music, and some documents.
    If someone could also explain about time machine? I guess its a whole separte thing from your media. I also would like to keep it affordable. I just purchased an external hard drive from www.macmall.com Seagate Backup Plus 1TB USB 3.0 Portable Drive - Black (STBU1000100).
    But I don't know if that was a really great choice because for it to work with time machine I have to reformat certain things, and Im not sure if I would like to have that hassle.
    I also wanted to know whats the difference between usb 3.0 and firewire. I read some forums saying that if you are to transfer videos you need to use firewire, and some agreed disagreed. Is that true?
    Please help!?
    I definitely would like to know what brands of external hard drives are highly recommended and good at price. The one I purchased is it any good?
    Thank you!
    -wjrlelidepaula

    http://eshop.macsales.com/shop/firewire/1394/USB/EliteAL/eSATA_FW800_FW400_USB
    http://www.lacie.com/us/products/product.htm?id=10554
    http://www.newertech.com/storage/

  • My iphone 4s keeps saying it does not have enough icloud storage and cannot be backed up. When I go to icloud storage and backup, it says that I have 5.0 GB of total storage and 5.0 GB of available storage.

    My iphone 4s keeps saying it does not have enough icloud storage and icloud cannot be backed up. When I go to icloud Storage & Backup in my settings, it says that I have 5.0 GB total and 5.0 GB available. The only thing I have selected, at this point, to be backed up are my contacts and the Find My iPhone app. Why does it always say I have no icloud storage available when I have ALL of the icloud storage available?!

    It says that my next backup size is 7.3 GB, but I have no idea why, because the only thing selected is the Find iPhone app, which takes up 0.2 KB...How do I get rid of whatever it THINKS it's backing up?

  • For the last month or so my icloud won't back up, it keeps telling me that there is too much storage and I need to delete some data. But I have deleted between 3-400 photos and it is still saying the same, can anyone please help

    For the last month or so my icloud won't back up, it keeps telling me that there is too much storage and I need to delete some data. But I have deleted between 3-400 photos and it is still saying the same, can anyone please help

    If they were deleted from your camera roll that should have resulted in a corresponding decrease in the estimated size of your next backup.
    If it's still saying that you don't have enough storage to back up, read through this article: http://support.apple.com/kb/ht4847.  It provides some suggestions for reducing your iCloud storage, such as deleting unneeded email. 
    The other area to look at is your text messages.  These are included in the backup.  If you have lots of photos and videos attached to your messages, that can significantly increase the size of your backup.  If that's the case, deleting these may make a big difference.

  • HT4910 I have 2 lines and on 1 of the main phone I went to settings then storage & backup automatically it showed how much space i have which was not allot and it also showed the other line storage space. I click on manage storage and it used to show both

    I was told that I have 14.9 gb of space on my phone when my total is 15gb. I was adviced to free storage and to click on settings and manage my storage by either purchase more or turning off or deleting some of the back ups. When I went in to settings then to icloud it usually would of showed me both phone storage memory and when I started going down my list and turning off some of the apps from back ups of certain app all of a sudden I couldnt no longer see my phone storage memory or my account name for that matter. Now I only see the other line username and storage space that the other phone has.
    What can I do? I used to see the list of all the apps I have on icloud and now its empty and it tells me I have available 13.4 gb available.
    Please advice. Thank you
    Patricia

    I cannot find this 300GB "Backup" in the Finder, only in the Storage info when I check "About This Mac".
    You are probably using Time Machine to backup your MacBook Pro, right? Then the additional 300 GB could be local Time Machine snapshots.  Time Machine will write the hourly backups to the free space on your hard disk, if the backup drive is temporarily not connected. You do not see these local backups in the Finder, and MacOS will delete them, when you make a regular backup to Time Machine, or when you need the space for other data.
    See Pondini's page for more explanation:   What are Local Snapshots?   http://pondini.org/TM/FAQ.html
    I have restarted my computer, but the information remains the same. How do I reclaim the use of the 300GB? Why is it showing up as "Backups" when it used to indicate "Photos"? Are my photos safe on the external drive?
    You have tested the library on the external drive, and so your photos are save there.  
    The local TimeMachine snapshot probably now contains a backup of the moved library.  Try, if connecting your Time Machine drive will reduce the size of your local Time Machine snapshots.

  • OLE object storage and retrieval FORMS 6.0

    Hello All,
    Iam using forms 6.0 and iam using OLE object to store the data object into the database, using the block wizard i created the object and from the
    action->Save iam saving the ole object to the database....
    Now i want to retrive the ole object from the database....
    my sql is
    declare
    ol long raw;
    begin
    select ole_object into ol from drawing_files where draw_no=1;
    drawing_files.ole_object:=ol;
    end;
    Its showing error in "Bad bind variable"
    How to solve the error
    and if possible i need the sql coding for storage and retreival of OLE object data..
    Thanks......

    I have re-applied the patch and the problem has vanished??
    Everything appears to function properly.

Maybe you are looking for

  • Open dataset in UTF8. Problems between Unicode and non Unicode

    Hello, I am currently testing the file transfer between unicode an non unicode systems. I transfered some japanese KNA1 data from non unicode system (Mandt,Name1, Name2,City) to a file with this option: set local language pi_langu.   open dataset pe_

  • Trapping Run-Time Errors

    We have defined a Setup Function in a sequence we are running. When a 'FAIL' is returned from this function a run-time error is generated and a run-time error window is displayed. Is it possible to trap this error and not display the window in certai

  • Exception about content-length of JSP

    My jsp runs with such exception:           and I can't find out where is wrong in the jsp.The attachment is the           jsp-generated java source file.           Environment:           JDK1.3           Weblogic 5.1 with SP6           Windows2000 Se

  • After Effects 7.0 Activation

    I have an old copy of after effects 7.0 On activation it keeps saying server is down and on phone act it will not go through. What should I do now?

  • Why is Firefox 20 on my Windows 7 laptop not showing all my My Yahoo toolbar icons?

    I just downloaded Firefox 20 and it seems to have bugs. I noticed that my Yahoo toolbar is incomplete and is missing several icons. My computer uses Windows 7 64 bit.