Integrating MetadataRepository with an existing DataBase

In OAS10G 10.1.2 ,how to integrate MetadataRepository with an existing DataBase10g

You'll need to use the Internet port on the device,
Also you may need to enable the web management portion of it.
dial ****7932# and then press 1 # and 1 to save

Similar Messages

  • Migrating Oracle repository Database with the existing Database

    Hi
    I have a grid installed in a machine and is it possible to create the repository database in different machine using the existing database.
    Please help me in this

    Thanks for the reply i got the Solution. We can use the "Install Grid usisng Existing Database" option but when we are tyring this it is throwing the error that DBSPOOL Package has to be run but dodn't know how to run that.

  • Weblogic SOA 12.1.3: Integration with Oracle 9i Database

    All,
    We have a client who currently adopt BPEL 10g (10.1.3.4). Currently we are looking to updrade the client to SOA Suite 12.1.3. As part of their existing architecture, there are a number of Oracle 9i databases that the BPEL components integrate with via DB Adapters. The clients current road map is to upgrade / migrate to the 12c SOA platform but not upgrade any of their legacy applications running on top of a Oracle 9i Database.
    Please note I have observed and reviewed the Certification Matrix for supported platforms at http://www.oracle.com/technetwork/middleware/fusion-middleware/documentation/fmw-1213certmatrix-2226694.xls
    As part of initial investigations, we have identified that the JDBC drivers that are integrated with 12.1.3. Weblogic are not compatable with Oracle 9i. You are able to create and test data source conections with success. However at runtime when querying the database a number of issues manifest. These incude:
    VARCHAR2 columns are not returned via a select. Date columns and number columns are returned
    Errors when executing adapters which implement the Pure SQL feature.The error returned involves the "ora-01460: unimplemented or unreasonable conversion requested" error.
    Similair design time issues are also envountered in JDeveloper (as per JDeveloper 12.1.3 (SOA / BPM) Integration with Oracle 9i Database)
    Looking at the default configuration in 12c, it is to utilise OJDBC7 drivers supplied which support JDBC 4.1specification.
    Has anyone had experience of using an Oracle 9i Database with Weblogic 12.1.3.? or have any viable options / views for how this could be achieved?
    Regards Dave

    I wrongly mentioned to change to change the font format. In that document they mention to add the lines.
    Thanks
    Guna

  • How to create a new database after copying an existing database with a new name

    hi
    i have an existing database and want to copy with a new name in sql server 2005 how do it is possible 
    spose
    i have a db name attached in sql server StoreManagementDB now i want to copy this database with all the transactions as StoreManagementDB_1.
    thanks

    Use a two steps to use a backup file to restore a database with a new name.
    ----You need to have a full backup of your database:
    --Step 1:
    RESTORE FILELISTONLY
    FROM DISK = 'C:\bk\TEST.BAK'
    --Find out the LogicalName of data file and log file
    -- in this case: the data file: TEST and the log file LogicalName: TEST_log
    --Both names will be used in the MOVE command
    --Step 2:
    -- Restore the files for test1.
    RESTORE DATABASE test1
    FROM DISK = 'C:\bk\TEST.BAK'
    WITH RECOVERY,
    MOVE 'TEST' TO 'C:\bk\test1_Data.mdf',
    MOVE 'TEST_log' TO 'C:\bk\test1_Log.ldf'
    GO

  • Integrating Active directory  with oracle EBS 12.1.3 with 11g R2 database

    Hi,
    can any one let me know Integrating Active directory windows 2009 R2 with oracle EBS 12.1.3 with 11g R2 database software requirements and document ids for integrating.
    Is windows 2008 active directory is cerfied with 10g OID??
    regards,
    chandrasekhar.

    Hi
    I found exact note
    Is OID 10g/11g DIP Compatible / Certified With Microsoft Active Directory 2008 / Windows 2008 R1/R2? [ID 944298.1]
    From note:
    DIP 10g latest version (10.1.4.3) and DIP 11g up to PS4 / 11.1.1.5 Patchset releases integrations are certified with MS AD 2008 R1 only.
    DIP 11g certification with AD 2008 R2 is supported only with DIP 11g PS5 / 11.1.1.6 Patchset or higher.
    Note: Although DIP below 11.1.1.6 integration (synchronization, external authentication, etc.) with MS Windows / AD 2008 R2 may work, it is not officially compatible / certified. See also Note 1076018.1.
    Regard
    Helios

  • How to Create new database (copy all table with data excluding 2 table )with existing database.

    Please follow the scenario:
    using C#
    1) current database file name is DB20122013.
    when user click on new year button
    2)Create backup copy of current database
    3)New database should create with all table(excluding table "Dailytemp" and "DailyMain") with data and database name as DB20132014.
    Musakkhir Sayyed.

    Hi,
    I hope, below stored procedure is useful for your scenario.
    CREATE PROC Create_New_Database
    ( @DBNAME VARCHAR(550)
    )AS
    Test : Exec [Create_New_Database] @DBNAME='DB20122013'        
    BEGIN TRY               
    SET NOCOUNT ON   
    DECLARE @sql VARCHAR(MAX), @DBNAME_NEW VARCHAR(550),@num int
    IF EXISTS(SELECT 1 FROM sys.databases WHERE name=@DBNAME) AND ISNUMERIC(RIGHT(@DBNAME,4))=1
    BEGIN
    SELECT @num= RIGHT(@DBNAME,4) 
    SELECT @DBNAME_NEW='DB'+CAST(@num AS VARCHAR(10))+''+CAST(@num+1 AS VARCHAR(10)) 
    IF EXISTS(SELECT 1 FROM sys.databases WHERE name=@DBNAME_NEW)
    BEGIN
    SELECT @DBNAME_NEW+' database already exists'
    END
    ELSE
    BEGIN
    SET @sql='USE '+@DBNAME+'  '+' backup database '+@DBNAME+' to disk = ''C:\'+@DBNAME+'.bak''  '
    +' restore database '+@DBNAME_NEW+' from disk = ''C:\'+@DBNAME+'.bak'''
    +' with move '''+@DBNAME+''' to ''C:\'+@DBNAME+'_data.mdf'' ,
    move '''+@DBNAME+'_log'' to ''C:\'+@DBNAME+'_log.log'''
    EXEC (@sql)
    SET @sql=''
    SET @sql=' USE '+@DBNAME_NEW+' IF EXISTS(SELECT 1 FROM SYS.TABLES WHERE NAME=''Dailytemp'') 
    BEGIN DROP TABLE Dailytemp END IF EXISTS(SELECT 1 FROM SYS.TABLES WHERE NAME=''DailyMain'') 
    BEGIN DROP TABLE DailyMain END '
    EXEC (@sql)
    END  
    END
    ELSE 
    BEGIN
    SELECT 'Database is now found or Database name does not mach the scenario'
    END
    SET NOCOUNT OFF   
    END TRY   
    BEGIN CATCH                
     DECLARE @ErrorMessage NVARCHAR(4000)                
        DECLARE @ErrorSeverity INT                
        DECLARE @ErrorState INT                           
        SELECT @ErrorMessage = ERROR_MESSAGE(), @ErrorSeverity = ERROR_SEVERITY(),@ErrorState = ERROR_STATE()                
        RAISERROR (@ErrorMessage,@ErrorSeverity,@ErrorState )                
    END CATCH;   
    GO
    Regards,
    RAMBHARATH

  • Problem while reconfiguring OIM 11g with existing Database

    Hello,
    I had some issues with my OIM 11g instance, so i reconfigured it by deleting user_projects folder,before deleting i took backup of config folder as i wanted to
    configure with existing database.
    Following steps were performed for reconfiguring OIM11g:-
    1)Ran config.sh from <Middleware>/Oracle_IDM1/common/bin
    2) Copied .xldatabasekey file to newly created domain
    3)Ran config.sh from <Middleware>/Oracle_IDM1/bin
    Then tried to start AdminServer, it showed status as running but with errors like
    java.lang.NoClassDefFoundError: Could not initialize class oracle.dfw.impl.common.TempFileManager
    at oracle.dfw.spi.portable.PortableDiagnosticsFrameworkProvider.init(PortableDiagnosticsFrameworkProvider.java:120)
    Then tried to start OIM server , it showed status as running but with error as
    oracle.iam.platform.utils.OIMAppInitializationException:
    OIM application intialization failed because of the following reasons:
    Password for .xldatabasekey is not seeded in CSF.
    Then i tried to cofigure domain again & this time i didnt select Oracle Identity Manager from Select domain source & checked AdminServer & it was running without any errors, but when i select Oracle Identity Manager from Select domain source then i get above problems.
    Can anyone provide pointers about how to resolve this issue .
    Thank-You
    Rahul Shah

    Dear Rahul,
    I got the same errors:
    ./admin/IDMDomain/mserver/IDMDomain/servers/wls_oim1/logs/wls_oim1.log
    ####<Jan 27, 2013 10:58:09 PM CET> <Error> <Deployer> <server02> <wls_oim1> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <aa66ef4907f1903f:4c6a3b0:13c7e03232f:-8000-0000000000000003> <1359323889050> <BEA-149205> <Failed to initialize the application 'oim [Version=11.1.1.3.0]' due to error oracle.iam.platform.utils.OIMAppInitializationException:
    OIM application intialization failed because of the following reasons:
    oim-config.xml was not found in MDS Repository.
    oracle.iam.platform.utils.OIMAppInitializationException:
    OIM application intialization failed because of the following reasons:
    oim-config.xml was not found in MDS Repository.could you explain, how did you sort out it, please? For example point 2 did you create one more domain?
    Best regards,
    Lain

  • Integrating and synchronizing other vendor databases with Oracle 8

    I need to integrate Oracle 8 with an Informix database in both directions (I mean from and toward Oracle); it should allow synchronous and asynchronous communication (because of different availability of databases).
    I heard about some Oracle tools (i.e. Oracle integration server, Heterogeneous services, Transparent Gateway, etc.) which ones are the best fit to and where can I find the technical documentation? Another type of solution could be better (e.g. by using databases triggers or something else)?
    All suggestions are welcome!
    Regards
    Carlo
    null

    Hello aymeric,
    The wonderful thing about LDAP is that it is a protocol standard
    governed by the IETF. So migrating from one server to another
    should be relatively easy. Since version 3.0.1, OID has a Meta
    Directory or as it is sometimes refered to as the Directory
    Integration server built into it which allows you to create
    custom connectors to synchronize OID with just about any type of
    data repository.
    Can you give me a specific example of what you want to migrate?
    Obviously I cannot vouch for the capabilities of other LDAP
    servers regarding this subject.
    Thanks,
    Jay

  • Installing SAP 4.6B with existing database

    Good evenning.
    I need to install SAP 4.6B with existing database in SQL Server 2003.
    How can I do this installation?.
    Can you send me many guide?
    Best regards.
    Luis Gomez.

    According to
    http://service.sap.com/mcod
    --> Availibility
    4.6B is not supported (too old).
    Markus

  • 10GR1 GridControl  with existing database fails

    Can anyone explain how the install with existing database works. I have tried to reason through it, but it always fails because it cannot find an oradata file in the directory where I am installing the software.... This makes no sense....
    thanks,

    You have to create the $ORACLE_HOME/oradata directory ahead of time. The installer
    warns you that the directory exists, but lets you continue and specify the locations where
    you would like to place the repository data files.
    For more information, check out this MetaLink forum message:
    http://metalink.oracle.com/metalink/plsql/for_main.expandThreads?p_thread_id=600102.992&p_forum_id=93&p_after_post=N&p_forum_scope=a&p_message_id=600102.992&p_forum_time=7&p_myThread=1
    or this other forum message:
    Re: 10g Grid Control on Solaris box

  • Members only area setup to query existing database before allowing creation of account

    I followed this walkthrough:
    Walkthrough: Creating a Web Site with Membership and User Login
    It was very helpful in creating the members login area.
    My next step is to link it to an existing database, so it will make sure the person who is trying to create an account is in that database. Is this easily done, or not possible? 
    I also need to know what I should do with the database. Should it be uploaded onto the webserver? It is currently kept in Microsoft Access, but I believe I need to put it into SQL? I apologize, I am not very knowledgeable about databases and how they work.
    Any help would be greatly appreciated! 

    http://msdn.microsoft.com/en-us/library/ms173463.aspx
    If this is an ACCESS database you will be better of asking this question om access forum.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Automated process to compare new data with the existing

    Below is the requested task and I am not sure if I can do this with only Database and ETL skill.
    "New customers access out site and I get a http:// request notifying me with new people accessing our website. I need to somehow take this new customer and compare with the existing customer table  and make sure that it is not an existing one.
    If it is new , I need to send a http:// notification back to a third party saying that this is new. Also, this all has to be done REAL TIME. "
    I am not sure if I can do all these real time by just using SSIS .
    Any input is much appreciated. Stay warm Folks!

    A new customer has to register, am I right? Then issue SELECT * FROM Customers WHERE Customerid=@CustomerID IF @@ROWCOUNT=0 that means it is a new one... You can use EXEC msdb.dbo.sp_send_dbmail to send a notification ....
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • I need to host a website with a SQL database - Azure pricing details are too confusing

    Hello,
    I need to give a potential client a hosting price for a somewhat simple web application they want me to build. I told them it shouldn't be a problem. After gathering the requirements, I figured I would use the following technology to build and host
    it:
    ASP.NET 4.5
    MVC 5
    1 SQL Database ~ 25GB with options to expand and also with a backup
    SSL certificate needed
    Hosting would be on Azure because I have some experience using Visual Studio 2012 and integrating the Visual Studio Online (TFS) source code and scrum web applications. I've never actually spun up a website with a SQL database using Azure before, but I
    imagined it wasn't too difficult to find a general hosting plan to support the above requirements.
    The use of the website will be very simple and limited to the basic CRUD operations. Will support forms authentication using the Identity 2.0 framework. The web applications main purpose is to fill out a form for new accounts, have a search page for
    those accounts, a page to view a created account and add notes to it. So performance wise, it isn't asking for much. I just want it to be fast and secure.
    So I start looking on the Azure's pricing landing page which is here: (can't put links in here, but search Azure pricing on Bing) and I see this Pricing Calculator, so I click it
    First thing I notice is the Websites tab doesn't mention SQL Database - in fact the Data Management is a separate tab from Websites. And if I made my selections on the Websites tab, the estimated monthly price doesn't stay the same when I go to the Data
    Management tab - so I get the illusion I have to have two separate purchases.
    I'm not exactly sure if the Pay as You Go billing feature would be okay because it's just a bit scary to leave every monthly payment up to chance; somewhat. Would love to know if there is other payment options that I could see for what I described above.
    I want to use Azure to host my asp.net website - it makes sense and the integration with Visual Studio is amazing. I love the publish feature for both MVC 5 Projects and SQL Database Projects.
    Thanks in advance for the help!

    Hello jdevanderson,
    I suggest that you start by looking at the pricing TIERS for the Azure website. This link will give you clarity on different Service TIERS that are availaible:
    http://azure.microsoft.com/en-in/pricing/details/websites/
    You can guage your requirement and choose the Service TIER accordingly.
    And regarding the database, you are right about it. You will be charged seperately for the database. You can refer to this link that will give you clarity on SQL database pricing:
    http://azure.microsoft.com/en-in/pricing/details/sql-database/
    Refer to this link for more information on 'How pricing works':
    http://azure.microsoft.com/en-in/pricing/
    Use the full calculator to add your website and the database to get an estimated cost:
    http://azure.microsoft.com/en-in/pricing/calculator/?scenario=full
    Thanks,
    Syed Irfan Hussain

  • Iphoto crashes when trying to open with the existing db

    Hi there,
    iPhoto keeps crashing when i try to launch it with the existing db. I can open it with a new db but am not sure how I can get the old one working.
    I love using iPhoto with all the events, faces and other features. Is there a way to get all them back?
    Thank you in advance
    Here is the crash log:
    Process:         iPhoto [270]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.3 (9.4.3)
    Build Info:      iPhotoProject-720091000000000~1
    App Item ID:     408981381
    App External ID: 15017489
    Code Type:       X86 (Native)
    Parent Process:  launchd [123]
    User ID:         501
    Date/Time:       2013-08-30 17:40:29.477 +0300
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          223 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  8 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      14DBC6AD-2C67-87D4-F3EB-208F45A7B3D8
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x921a0e8b __raiseError + 219
    1   libobjc.A.dylib                     0x95c5a52e objc_exception_throw + 230
    2   CoreFoundation                      0x920ac07b -[__NSArrayM insertObject:atIndex:] + 299
    3   CoreFoundation                      0x920abf40 -[__NSArrayM addObject:] + 64
    4   iPhoto                              0x00069858 iPhoto + 256088
    5   iPhoto                              0x00350d0c iPhoto + 3300620
    6   iPhoto                              0x0026065c iPhoto + 2315868
    7   libdispatch.dylib                   0x982f1cb1 _dispatch_barrier_sync_f_slow_invoke + 80
    8   libdispatch.dylib                   0x982ebc82 _dispatch_client_callout + 46
    9   libdispatch.dylib                   0x982f12e3 _dispatch_main_queue_callback_4CF + 223
    10  CoreFoundation                      0x9209cc29 __CFRunLoopRun + 1961
    11  CoreFoundation                      0x9209c01a CFRunLoopRunSpecific + 378
    12  CoreFoundation                      0x9209be8b CFRunLoopRunInMode + 123
    13  HIToolbox                           0x92a48f5a RunCurrentEventLoopInMode + 242
    14  HIToolbox                           0x92a48cc9 ReceiveNextEventCommon + 374
    15  HIToolbox                           0x92a48b44 BlockUntilNextEventMatchingListInMode + 88
    16  AppKit                              0x997c993a _DPSNextEvent + 724
    17  AppKit                              0x997c916c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    18  AppKit                              0x997bf5cc -[NSApplication run] + 855
    19  AppKit                              0x997625f6 NSApplicationMain + 1053
    20  iPhoto                              0x0003b0b9 iPhoto + 65721
    21  iPhoto                              0x0003a705 iPhoto + 63237
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x921a16a7 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib                         0x95c5a52e objc_exception_throw + 230
    2   com.apple.CoreFoundation                0x920ac07b -[__NSArrayM insertObject:atIndex:] + 299
    3   com.apple.CoreFoundation                0x920abf40 -[__NSArrayM addObject:] + 64
    4   com.apple.iPhoto                        0x00069858 0x2b000 + 256088
    5   com.apple.iPhoto                        0x00350d0c 0x2b000 + 3300620
    6   com.apple.iPhoto                        0x0026065c 0x2b000 + 2315868
    7   libdispatch.dylib                       0x982f1cb1 _dispatch_barrier_sync_f_slow_invoke + 80
    8   libdispatch.dylib                       0x982ebc82 _dispatch_client_callout + 46
    9   libdispatch.dylib                       0x982f12e3 _dispatch_main_queue_callback_4CF + 223
    10  com.apple.CoreFoundation                0x9209cc29 __CFRunLoopRun + 1961
    11  com.apple.CoreFoundation                0x9209c01a CFRunLoopRunSpecific + 378
    12  com.apple.CoreFoundation                0x9209be8b CFRunLoopRunInMode + 123
    13  com.apple.HIToolbox                     0x92a48f5a RunCurrentEventLoopInMode + 242
    14  com.apple.HIToolbox                     0x92a48cc9 ReceiveNextEventCommon + 374
    15  com.apple.HIToolbox                     0x92a48b44 BlockUntilNextEventMatchingListInMode + 88
    16  com.apple.AppKit                        0x997c993a _DPSNextEvent + 724
    17  com.apple.AppKit                        0x997c916c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    18  com.apple.AppKit                        0x997bf5cc -[NSApplication run] + 855
    19  com.apple.AppKit                        0x997625f6 NSApplicationMain + 1053
    20  com.apple.iPhoto                        0x0003b0b9 0x2b000 + 65721
    21  com.apple.iPhoto                        0x0003a705 0x2b000 + 63237
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9496c9ae kevent + 10
    1   libdispatch.dylib                       0x982eec71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x982ee7a9 _dispatch_mgr_thread + 53
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x9496980e semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x982f0e70 _dispatch_thread_semaphore_wait + 25
    2   libdispatch.dylib                       0x982f0ccc _dispatch_barrier_sync_f_slow + 149
    3   libdispatch.dylib                       0x982ed3fb dispatch_barrier_sync_f + 37
    4   libdispatch.dylib                       0x982f1c5a _dispatch_sync_slow + 70
    5   com.apple.iPhoto                        0x002605fc 0x2b000 + 2315772
    6   com.apple.Foundation                    0x913c9f27 -[NSBlockOperation main] + 188
    7   com.apple.Foundation                    0x9139d259 -[__NSOperationInternal start] + 740
    8   com.apple.Foundation                    0x9139cf64 -[NSOperation start] + 67
    9   com.apple.Foundation                    0x913a5039 __block_global_6 + 135
    10  libdispatch.dylib                       0x982eff8f _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x982ebc82 _dispatch_client_callout + 46
    12  libdispatch.dylib                       0x982ecf02 _dispatch_worker_thread2 + 285
    13  libsystem_c.dylib                       0x995c0e72 _pthread_wqthread + 441
    14  libsystem_c.dylib                       0x995a8d2a start_wqthread + 30

    Here's how to repair your iPhoto database.
    How to Rebuild/Repair an iPhoto Library.

  • Creating a new database vs. Using the existing database

    Hi,
    I have to build a new desktop application over an existing oracle database -
    Current database is around 300 gb
    Has 1500+ tables
    Tables are in denormalized form and has ungrouped table columns
    High level of nesting is done in the triggers.
    Now before I take decision to use existing database I want to know
    1. what factors to consider while choosing between the existing db or a new db?
    Thanks in advance.

    Some of the things I would consider before including the two desktop applications together:
    Would you mind impacting one or the other application (downtime) if you needed to bounce the database for any reason, or if there were issues with the database. Keeping them separate would prevent having to bring down both applications if the database went down for any reason (planned or otherwise).
    Would the type of activity in both databases be so similar that all global optimizer and other parameter settings be perfect for both cases?
    Would the SLA be the same for both databases? Would your customers agree to impacts of one application data if you had to roll back the database for the other application?
    By having the two applications in the same database, you are also stuck with having to wait for both application vendors to certify their product with the next patch level or version for upgrades. Keeping them separate eliminates this problem.
    Is there any compelling reason to keep them together?
    Personally, I would keep them separate for all of the above reasons, and many more which I did not bother to write.

Maybe you are looking for

  • Training and Event Management Data Load

    Hello Team Would appreciate if any of you can advice on how to load Training and Event management data. I think its stored in HRP tables. I'm working on an upgrade assignment. Thanks

  • NAS that's Windows PC and Mac compatible?

    Hi All, I'm brand new to the Mac world, I've never own a Mac of any kind before and I've played with one for a grand total of 10 minutes before deciding I want one. I ordered one last week and it should be here in a few days. I'm excited to say the l

  • So slow. D80 raw files.

    Why does my MBP seem incapable of dealing with photos? I have a Nikon D80, I went to a gig last night and decided to shoot in RAW (.NEF) mode, which produces files about 9MB each. When I try and open them with preview it takes ages. Ages. I have the

  • AppleScript, Finder and Mavericks

    I'm frustrated. Addressing Finder in AppleScript from Mavericks is unbelievably slow. I just upgraded one of my "automation" machines (a quad-core 2.5GHz iMac with 32GB of RAM) to Mavericks from 10.8.5, and the AppleScript that has been running on it

  • How to get back iCloud drive icon in Finder?

    Hello, I removed the iCloud Drive link from my Finder's favorites as I was unable to open it properly (only worked when using the context menu via right-clicking). Now, how do I re-gain access to it? I cannot find any iCloud Drive icon anywhere in th