Restore Database without replacing existing index

Hi all
 Every morning we are restoring backup from production to Reporting DB.we need to create new index in Reporting DB.is it any option to restore DB with out replace the existing index in destination?
 please help me.
Thanks
Selva
Thanks - SelvaKumarSubramaniam.Please MARK AS ANSWER, if my answer is useful to U.

If you did not have the index in production then you won't have it in dev. server.....
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

Similar Messages

  • How can I update the music on my classic without replacing existing music?

    So I've been at this for a while now and I'm very afraid to sync my classic worrying that I will replace some existing music. I haven't synced my ipod with my new computer yet and am worried it will replace music that's been on my ipod since I got it. I know, I know I should have a back up of my music but alas I don't have everything. There are some really great albums that I don't have backup of and I can't seem to retrieve it off my ipod as it is. Any suggestions? I just want to add new music that I have to my ipod without deleting old music.
    Please Help!
    Thanks a bunch

    1: Make sure itunes on your new computer is set to prevent ipods from  syncing automatically when ipod is connected. Do this by going to edit/preferences/devices.
    2: Connect ipod. Under summary set it to manually manage music.
    3: Now to add music without erasing what's already on your ipod, highlight whatever songs or albums you want to add from the itunes library and drag them to the ipod showing in the left pane under devices.
    Hold the control key down while selecting music to highlight as much music as you want, them drag the the whole kaboodle to the left. Only the highlighted music will then sync all at once and nothing else will be deleted.
    I think this should be the default setup when installing itunes. It would save a lot of people the headache of losing all their music when first connecting their ipod to itunes.
    Let us know if this is what you were looking for.

  • How to restore Database backup on existing ora DB on different machine

    I have question, which is dancing on top of my head about the Restore in Oracle10g, Windows server/XP?
    I have backup of Oracle 10g DB (BACKUPSET), I want to restore that backup to my local machine on windows xp. The backup I copied from PROD to DEV/XP machine to perform restore. IN PROD we have configured RMAN and obviously it is having 4 OS Drives; 2 of them configured for DATAPUMP and BACKUPSET.
    I want to Restore the exisiting backup from the PROD to Dev/XP (my local machine) which is having only one drive that is c:\oradata\
    RMAN is also configured on Dev/XP machine. So please give me step by step process to do the successful restore on Dev/XP machine.
    I know, I can do the Datapump (export from PROD and import to XP), but I want to do only restore process.
    Any help greatly appreciated.

    First of all, you need to make sure that your production and test system are running the same OS (that is: your production db needs to run on WinXp as well), or, at the very least, they need to have the same endianness
    Assuming that they are, here is the link to RMAN restore/recover: http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/recov.htm#i1009223
    I'm guessing one of the things you want to do is: change data file locations on the new machine. You can find how to do it i.e. here: http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/recov004.htm#sthref585
    Good luck

  • Unable to restore database using RMAN in oracle 10g

    Hi Everyone!!!!!!!
    I have following scenario. In which I don't want to drop newly created tablespace (test). So, let me know how to restore database from existing backup without dropping new tablespace and taking new backup?
    1. I took database backup as
    RMAN > backup database;
    2. Create one tablespace "test"
    3. Then I tried to restore database as (In mount mode)
    RMAN > restore database
    4. But I can't restore database. Even I tried after taking "test" tablespace offline , It returns error as follow
    ORA-01119: error in creating database file 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTCAT\TEST.DBF'
    ORA-27038: created file already exists
    OSD-04010: <create> option specified, file already exists
    Please suggest me step/way so that I can restore database without taking new backup or dropping new tablespace (test).........

    Hello;
    Rename this datafile :
    D:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTCAT\TEST.DBF
    Then try the restore again.
    If this isn't a test database stop and think about how you will recover if this does not work. That is how will you recover from the recover if it goes bad?
    Best Regards
    mseberg

  • HOW RESTORE WITHOUT OVERWRITE EXISTING DATABASE ???????

    I create a test database named TESTONE
    USE MASTER
    GO
    if DB_ID('testone') IS NOT null
    drop database TESTONE
    GO
    CREATE DATABASE TESTONE
    GO
    and change recovery model to simple
    alter database TESTONE set recovery simple
    GO
    so I create a sample table
    use TESTONE
    GO
    create table table1(
    id int identity primary key,
    descr varchar(10)
    go
    I take a full backup of that database
    USE master
    GO
    BACKUP DATABASE TESTONE
    TO DISK=N'c:\TEMP\testone.bak'
    WITH NOFORMAT, INIT, NAME = N'TESTONE', SKIP, NOREWIND, NOUNLOAD, STATS = 10
    GO
    after that i do something bad :-)
    USE TESTONE
    GO
    drop table table1
    go
    USE master
    GO
    USE [master]
    RESTORE DATABASE [TESTONE] FROM DISK = N'C:\TEMP\testone.bak' WITH RECOVERY, FILE = 1, NOUNLOAD, STATS = 5
    GO
    the restore command doesn't contains  WITH REPLACE clause and ....
    if you expand the tables tree you'll find your deleted table
    the database has been overwritten
    Why?

    That is the default behavior or RESTORE. Since you are restoring the same DB (not a different DB) and the DB is in simple recovery mode, it will overwrite the existing DB. See https://msdn.microsoft.com/en-us/library/ms186858.aspx.
    Here is an excerpt from this link:
    REPLACE Option Impact
    REPLACE should be used rarely and only after careful consideration. Restore normally prevents accidentally overwriting a database with a different database. If the database specified in a RESTORE statement already exists on the current server and the specified
    database family GUID differs from the database family GUID recorded in the backup set, the database is not restored. This is an important safeguard.
    The REPLACE option overrides several important safety checks that restore normally performs. The overridden checks are as follows:
    Restoring over an existing database with a backup taken of another database.
    With the REPLACE option, restore allows you to overwrite an existing database with whatever database is in the backup set, even if the specified database name differs from the database name recorded in the backup set. This can result in accidentally overwriting
    a database by a different database.
    Restoring over a database using the full or bulk-logged recovery model where a tail-log backup has not been taken and the STOPAT option is not used.
    With the REPLACE option, you can lose committed work, because the log written most recently has not been backed up.
    Overwriting existing files.
    For example, a mistake could allow overwriting files of the wrong type, such as .xls files, or that are being used by another database that is not online. Arbitrary data loss is possible if existing files are overwritten, although the restored database is complete.
    Satish Kartan www.sqlfood.com

  • How to restore Ipod database without iTunes?

    Hi,
    My iPod mini is visible to any aplication except iTunes. I have tried all it sugested on the manuals to fix it and nothing worked.
    Others applications like RealPlayer and Anapod can see that the iPod is connect but can´t show its content. RealPlayer says that the database file doesn´t exist or is corrupted.
    The only way I can see my files is accessing the iPod-Control directory using windows.
    If I disconect it from the Pc I can´t see the musics that are on it.
    I have made a copy of the songs that were on it and now I want to know how to restore it without use iTunes, because nothing makes iTunes see it.
    Is there any update link that still work on apple website, so I don´t need to use iTunes?
    I need to restore my iPod without iTunes because unistall, check register, restarts,... did not work.
    The only way I can see the iPod is runing the diadnosis under the help menu. Nothing have worked to make it be showed as device.
    That is what the diagnosis show:
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    Hewlett-Packard HP Pavilion b1000br(EN469LA)
    iTunes 7.0.2.16
    iPodService 7.0.2.16 is currently running.
    iTunesHelper 7.0.2.16 is currently running.
    Current user is an administrator.
    Connected Storage Devices:
    IDE\DiskSAMSUNGHD160JJ________________________WU100-33, Bus Type ATA, Bus Address [0,0]
    USBSTOR\DiskApple__iPod___________1.62, Bus Type USB
    Universal Serial Bus Controllers:
    SiS 7001 PCI to USB Open Host Controller, Barramento PCI 0, dispositivo 3, função 0. Device is working properly.
    SiS PCI to USB Enhanced Host Controller, Barramento PCI 0, dispositivo 3, função 3. Device is working properly.
    No IEEE 1394 Host Controller found.
    Connected Device Information
    RACHEL'S IP (G:\), iPod mini running firmware version 1.4.1
    Serial Number: JQ521620S45
    Bus Speed: 61440
    The last connected iPod serial number: JQ521620S45.
    The iPod Service Logging Information:
    [SERVICE: 0x97C,20:58:33 INFO] Started C:\Arquivos de programas\iPod\bin\iPodService.exe (Tue Feb 06 20:58:33 2007)
    [SERVICE: 0x97C,20:58:33 INFO] ##### iPodService starting as a service, version: 7.0.2.16
    [SERVICE: 0x9A8,20:58:34 INFO] Timed out... Starting device manager!
    [SERVICE: 0xA04,20:58:35 INFO] Listener Window created
    [SERVICE: 0x9A8,20:58:37 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x9A8,20:58:37 INFO] device \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x9A8,20:58:37 INFO] device is an iPod
    [SERVICE: 0x9A8,20:58:37 INFO] type 0x7 drive 0x1 partition 0x0
    [SERVICE: 0x9A8,20:58:37 INFO] [-1] set waiting to mount = 1
    [SERVICE: 0x9A8,20:58:37 INFO] [1] Assigning session 0
    [SERVICE: 0x9A8,20:58:37 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0x9A8,20:58:37 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0x9A8,20:58:37 INFO] [1] added device number 1 to m_objDeviceNumberMap
    [SERVICE: 0x9A8,20:58:37 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_vctDeviceInterfaces
    [SERVICE: 0x9A8,20:58:37 INFO] [1] input #0 from src #0
    [SERVICE: 0x9F4,20:58:37 INFO] [1] input #0
    [SERVICE: 0x9F4,20:58:38 INFO] [MACHINE 1 INPUT #0] - (HDW) Interface Arrival
    [SERVICE: 0x9F4,20:58:38 INFO] [1] progress state is 2, Waiting to mount = 1
    [SERVICE: 0x9F4,20:58:38 INFO] [1] progress is now 2
    [SERVICE: 0x9F4,20:58:38 INFO] [1] progress is now 2
    [SERVICE: 0x9F4,20:58:38 INFO] [MACHINE 1 TRANSITION] - {Unknown} ==> {Connected}
    [SERVICE: 0x9F4,20:58:38 INFO] [MACHINE 1 ACTIONS] - {Connected}
    [SERVICE: 0x9F4,20:58:38 INFO] [1] SCSI Inquiry attempt #0
    [SERVICE: 0x9F4,20:58:38 INFO] VendorId: Apple
    [SERVICE: 0x9F4,20:58:38 INFO] ProductId: iPod
    [SERVICE: 0x9F4,20:58:38 INFO] revision: 1.62
    [SERVICE: 0x9F4,20:58:38 INFO] vendor bytes:
    [SERVICE: 0x9F4,20:58:38 INFO] 02 01 00 00 00 00 00 00 00 07 00 02 92 00 00 00 00 00 00 00
    [SERVICE: 0x9F4,20:58:38 INFO] [1] firmware version: 1.62 (0x13E)
    [SERVICE: 0x9F4,20:58:38 INFO] [1] Power State: Powered
    [SERVICE: 0x9F4,20:58:38 INFO] [1] Checkpoint attempt #0
    [SERVICE: 0x9F4,20:58:38 ERROR] Did not find first letter of stage
    [SERVICE: 0x9F4,20:58:38 INFO] [1] serial number 000A27001438703A
    [SERVICE: 0x9F4,20:58:38 INFO] [1] *** CONNECTED - Sending event out, device session 0.
    [SERVICE: 0x9A8,20:58:40 INFO] [VolumeArrive] mask = 0x7D
    [SERVICE: 0x9A8,20:58:40 INFO] looking up device # for \\.\G:
    [SERVICE: 0x9A8,20:58:40 INFO] type 0x7 drive 0x1 partition 0x1
    [SERVICE: 0x9A8,20:58:40 INFO] iTunes device #1 found with drive letter G, mask 0x40
    [SERVICE: 0x9A8,20:58:40 INFO] [1] set waiting to mount = 0
    [SERVICE: 0x9A8,20:58:40 INFO] [1] input #1 from src #0
    [SERVICE: 0x9F8,20:58:40 INFO] [1] input #1
    [SERVICE: 0x9A8,20:58:40 INFO] looking up device # for \\.\F:
    [SERVICE: 0x9A8,20:58:40 INFO] type 0x2 drive 0x2 partition 0xffffffff
    [SERVICE: 0x9A8,20:58:40 INFO] [SIMULATED INTERFACE ARRIVAL] generating connect event for device 2
    [SERVICE: 0x9A8,20:58:40 INFO] looking up device # for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x9A8,20:58:40 INFO] type 0x7 drive 0x1 partition 0x0
    [SERVICE: 0x9A8,20:58:40 INFO] looking up device # for \\.\E:
    [SERVICE: 0x9A8,20:58:40 INFO] type 0x2 drive 0x1 partition 0xffffffff
    [SERVICE: 0x9A8,20:58:40 INFO] looking up device # for \\.\D:
    [SERVICE: 0x9A8,20:58:40 INFO] type 0x2 drive 0x0 partition 0xffffffff
    [SERVICE: 0x9A8,20:58:40 INFO] [SIMULATED INTERFACE ARRIVAL] generating connect event for device 0
    [SERVICE: 0x9A8,20:58:41 INFO] looking up device # for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0x9A8,20:58:41 INFO] type 0x7 drive 0x1 partition 0x0
    [SERVICE: 0x9F8,20:58:41 INFO] [MACHINE 1 INPUT #1] - (HDW) Volume Mount
    [SERVICE: 0x9F8,20:58:41 INFO] [MACHINE 1 TRANSITION] - {Connected} ==> {Mounted}
    [SERVICE: 0x9F8,20:58:41 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9F8,20:58:41 INFO] [MACHINE 1 ACTIONS] - {Mounted}
    [SERVICE: 0x9F8,20:58:41 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x9F8,20:58:41 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x9F8,20:58:41 ERROR] Did not find first letter of stage
    [SERVICE: 0x9F8,20:58:41 INFO] [1] OS says filesystem is FAT32
    [SERVICE: 0x9F8,20:58:41 INFO] File does not exist!
    [SERVICE: 0x9F8,20:58:41 INFO] [1] iTunes Preference file does not exist!
    [SERVICE: 0x9F8,20:58:41 INFO] [1] ===== iPod Mini =====
    [SERVICE: 0x9F8,20:58:41 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x9F8,20:58:41 INFO] 20:58:41, year 2007, day of yr. 36, GMT offset -8 isDST 1
    [SERVICE: 0x9F8,20:58:41 INFO] [1] progress is now 0
    [SERVICE: 0x9F8,20:58:43 INFO] [1] *** MOUNTED - Sending event out, device session 0.
    [SERVICE: 0x9F8,20:58:43 INFO] [1] Auto-launch iTunes ENABLED
    [SERVICE: 0x9F8,20:58:43 INFO] iTunes located at 'C:\Arquivos de programas\iTunes\iTunes.exe'
    [SERVICE: 0x9A4,20:58:43 INFO] launching iTunes.
    [SERVICE: 0x9C0,20:59:01 INFO] <0x4> Got Serial #
    [SERVICE: 0xA18,20:59:01 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xA18,20:59:01 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xA18,20:59:01 INFO] Mounted
    [SERVICE: 0xA18,20:59:01 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xA18,20:59:01 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x9C0,20:59:01 INFO] Mounted
    [SERVICE: 0x9C0,20:59:01 INFO] [1] already mounted!
    [SERVICE: 0x9C0,20:59:01 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0x9E4,20:59:03 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0x9C0,20:59:03 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x9C0,20:59:03 INFO] Mounted
    [SERVICE: 0x9C0,20:59:03 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x9C0,20:59:03 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xA18,20:59:03 INFO] <0x4> COM request for device 1 drive letter - G
    [SERVICE: 0x9C0,20:59:03 INFO] Mounted
    [SERVICE: 0x9C0,20:59:03 INFO] Device 0 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x9C0,20:59:03 INFO] Device 0 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x9C0,20:59:03 INFO] File does not exist!
    [SERVICE: 0x9C0,20:59:03 INFO] [1] CreateFileW error 0x3
    [SERVICE: 0x9C0,20:59:03 INFO] [1] WriteNewPrefs FAILED!
    [SERVICE: 0x9C0,20:59:03 INFO] [1] ReadDevicePreferences() failed!
    [SERVICE: 0xA04,21:03:50 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:03:50 INFO] [1] input #2 from src #0
    [SERVICE: 0xA04,21:03:50 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:03:50 INFO] [1] input #3 from src #0
    [SERVICE: 0x9FC,21:03:51 INFO] [1] input #2
    [SERVICE: 0x9F4,21:03:51 INFO] [1] input #3
    [SERVICE: 0xA04,21:03:51 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:03:51 INFO] [1] input #4 from src #0
    [SERVICE: 0x9F8,21:03:51 INFO] [1] input #4
    [SERVICE: 0x9FC,21:03:51 INFO] [MACHINE 1 INPUT #2] - (HDW) CheckDevNode
    [SERVICE: 0xA04,21:03:51 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:03:51 INFO] [1] input #5 from src #0
    [SERVICE: 0x9FC,21:03:52 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9F4,21:03:52 INFO] [MACHINE 1 INPUT #3] - (HDW) CheckDevNode
    [SERVICE: 0x9F4,21:03:52 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9F8,21:03:52 INFO] [MACHINE 1 INPUT #4] - (HDW) CheckDevNode
    [SERVICE: 0x9F8,21:03:52 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9F8,21:03:52 INFO] [1] input #5
    [SERVICE: 0x9F8,21:03:52 INFO] [MACHINE 1 INPUT #5] - (HDW) CheckDevNode
    [SERVICE: 0x9F8,21:03:52 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xA04,21:04:18 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:04:18 INFO] [1] input #6 from src #0
    [SERVICE: 0x9FC,21:04:18 INFO] [1] input #6
    [SERVICE: 0x9FC,21:04:18 INFO] [MACHINE 1 INPUT #6] - (HDW) CheckDevNode
    [SERVICE: 0x9FC,21:04:18 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xA04,21:16:24 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:16:24 INFO] [1] input #7 from src #0
    [SERVICE: 0x9F4,21:16:24 INFO] [1] input #7
    [SERVICE: 0x9F4,21:16:24 INFO] [MACHINE 1 INPUT #7] - (HDW) CheckDevNode
    [SERVICE: 0x9F4,21:16:25 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xA04,21:33:20 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:33:20 INFO] [1] input #8 from src #0
    [SERVICE: 0x9F8,21:33:20 INFO] [1] input #8
    [SERVICE: 0xA04,21:33:20 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:33:20 INFO] [1] input #9 from src #0
    [SERVICE: 0x9FC,21:33:20 INFO] [1] input #9
    [SERVICE: 0xA04,21:33:21 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:33:21 INFO] [1] input #10 from src #0
    [SERVICE: 0x9F4,21:33:21 INFO] [1] input #10
    [SERVICE: 0x9F8,21:33:21 INFO] [MACHINE 1 INPUT #8] - (HDW) CheckDevNode
    [SERVICE: 0x9F8,21:33:21 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x9F8,21:33:21 INFO] [1] progress is now 1
    [SERVICE: 0x9FC,21:33:21 INFO] [MACHINE 1 INPUT #9] - (HDW) CheckDevNode
    [SERVICE: 0x9F8,21:33:21 INFO] [MACHINE 1 TRANSITION] - {Mounted} ==> {Unknown}
    [SERVICE: 0x9F8,21:33:21 INFO] [MACHINE 1 ACTIONS] - {Unknown}
    [SERVICE: 0x9FC,21:33:21 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x9F4,21:33:21 INFO] [MACHINE 1 INPUT #10] - (HDW) CheckDevNode
    [SERVICE: 0x9F4,21:33:21 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x9F8,21:33:21 INFO] [1] *** DISCONNECTED - Sending event out, device session 0.
    [SERVICE: 0x9F8,21:33:21 INFO] [1] progress is now 0
    [SERVICE: 0x9F8,21:33:21 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xA04,21:33:21 INFO] [VolumeRemoved] existing mask 0x40, arrive mask 0x40
    [SERVICE: 0xA04,21:33:21 INFO] [1] value = 1
    [SERVICE: 0xA04,21:33:21 INFO] [1] input #11 from src #0
    [SERVICE: 0x9FC,21:33:21 INFO] [1] input #11
    [SERVICE: 0xA04,21:33:21 INFO] [InterfaceRemoved]
    [SERVICE: 0xA04,21:33:21 INFO] [1] value = 0
    [SERVICE: 0xA04,21:33:21 INFO] removed device number 1 from m_objDeviceNumberMap
    [SERVICE: 0xA04,21:33:21 INFO] [1] input #12 from src #0
    [SERVICE: 0x9F4,21:33:21 INFO] [1] input #12
    [SERVICE: 0xA04,21:33:21 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:33:21 INFO] [1] Progress state is 3, Waiting to disconnect = 0
    [SERVICE: 0xA04,21:33:21 ERROR] device number 0 exists, but isn't in m_objDeviceNumberMap!
    [SERVICE: 0xA04,21:33:21 INFO] removed device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" from m_vctDeviceInterfaces
    [SERVICE: 0xA04,21:33:21 INFO] [1] input #13 from src #0
    [SERVICE: 0x9F8,21:33:21 INFO] [1] input #13
    [SERVICE: 0xA04,21:33:21 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:33:21 INFO] [1] input #14 from src #0
    [SERVICE: 0x9FC,21:33:21 INFO] [MACHINE 1 INPUT #11] - (HDW) Volume Unmount
    [SERVICE: 0x9FC,21:33:21 INFO] [1] progress is now 3
    [SERVICE: 0x9FC,21:33:21 INFO] [1] Setting progress to 3
    [SERVICE: 0x9FC,21:33:21 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x9F4,21:33:21 INFO] [MACHINE 1 INPUT #12] - (HDW) Interface Removal
    [SERVICE: 0x9F4,21:33:21 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x9F4,21:33:21 INFO] [1] input #14
    [SERVICE: 0x9F8,21:33:21 INFO] [MACHINE 1 INPUT #13] - (HDW) CheckDevNode
    [SERVICE: 0x9F8,21:33:22 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0x9F4,21:33:22 INFO] [MACHINE 1 INPUT #14] - (HDW) CheckDevNode
    [SERVICE: 0x9F4,21:33:22 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xA04,21:36:21 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:36:21 INFO] [1] input #15 from src #0
    [SERVICE: 0x9FC,21:36:21 INFO] [1] input #15
    [SERVICE: 0x9FC,21:36:21 INFO] [MACHINE 1 INPUT #15] - (HDW) CheckDevNode
    [SERVICE: 0x9FC,21:36:21 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xA04,21:48:20 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:48:20 INFO] [1] input #16 from src #0
    [SERVICE: 0x9F8,21:48:20 INFO] [1] input #16
    [SERVICE: 0x9F8,21:48:20 INFO] [MACHINE 1 INPUT #16] - (HDW) CheckDevNode
    [SERVICE: 0x9F8,21:48:20 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xA04,21:48:20 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:48:20 INFO] [1] input #17 from src #0
    [SERVICE: 0x9F4,21:48:20 INFO] [1] input #17
    [SERVICE: 0xA04,21:48:20 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:48:20 INFO] [1] input #18 from src #0
    [SERVICE: 0x9FC,21:48:20 INFO] [1] input #18
    [SERVICE: 0x9F4,21:48:21 INFO] [MACHINE 1 INPUT #17] - (HDW) CheckDevNode
    [SERVICE: 0x9F4,21:48:21 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9FC,21:48:21 INFO] [MACHINE 1 INPUT #18] - (HDW) CheckDevNode
    [SERVICE: 0x9FC,21:48:21 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xA04,21:48:31 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xA04,21:48:31 INFO] type 0x7 drive 0x1 partition 0x0
    [SERVICE: 0xA04,21:48:31 INFO] [1] set waiting to mount = 1
    [SERVICE: 0xA04,21:48:31 INFO] [1] Attempt to reassign from session 0 to session 0, DENIED!
    [SERVICE: 0xA04,21:48:31 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0xA04,21:48:31 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0xA04,21:48:31 INFO] [1] added device number 1 to m_objDeviceNumberMap
    [SERVICE: 0xA04,21:48:31 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_vctDeviceInterfaces
    [SERVICE: 0xA04,21:48:31 INFO] [1] input #19 from src #0
    [SERVICE: 0x9F8,21:48:31 INFO] [1] input #19
    [SERVICE: 0xA04,21:48:31 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:48:31 INFO] [1] input #20 from src #0
    [SERVICE: 0x9F4,21:48:31 INFO] [1] input #20
    [SERVICE: 0xA04,21:48:31 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:48:31 INFO] [1] input #21 from src #0
    [SERVICE: 0x9FC,21:48:31 INFO] [1] input #21
    [SERVICE: 0x9F8,21:48:31 INFO] [MACHINE 1 INPUT #19] - (HDW) Interface Arrival
    [SERVICE: 0x9F8,21:48:31 INFO] [1] progress state is 2, Waiting to mount = 1
    [SERVICE: 0x9F8,21:48:31 INFO] [1] progress is now 2
    [SERVICE: 0x9F8,21:48:31 INFO] [1] progress is now 2
    [SERVICE: 0x9F8,21:48:31 INFO] [MACHINE 1 TRANSITION] - {Unknown} ==> {Connected}
    [SERVICE: 0x9F8,21:48:31 INFO] [MACHINE 1 ACTIONS] - {Connected}
    [SERVICE: 0x9F8,21:48:31 INFO] [1] SCSI Inquiry attempt #0
    [SERVICE: 0x9F8,21:48:31 INFO] VendorId: Apple
    [SERVICE: 0x9F8,21:48:31 INFO] ProductId: iPod
    [SERVICE: 0x9F8,21:48:31 INFO] revision: 1.62
    [SERVICE: 0xA04,21:48:31 INFO] [VolumeArrive] mask = 0x40
    [SERVICE: 0xA04,21:48:31 INFO] looking up device # for \\.\G:
    [SERVICE: 0xA04,21:48:31 INFO] type 0x7 drive 0x1 partition 0x1
    [SERVICE: 0xA04,21:48:31 INFO] iTunes device #1 found with drive letter G, mask 0x40
    [SERVICE: 0xA04,21:48:31 INFO] [1] set waiting to mount = 0
    [SERVICE: 0xA04,21:48:31 INFO] [1] input #22 from src #0
    [SERVICE: 0x9F8,21:48:31 INFO] vendor bytes:
    [SERVICE: 0x9F8,21:48:31 INFO] 02 01 00 00 00 00 00 00 00 07 00 02 92 00 00 00 00 00 00 00
    [SERVICE: 0xA04,21:48:31 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:48:31 INFO] [1] input #23 from src #0
    [SERVICE: 0xA04,21:48:31 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:48:31 INFO] [1] input #24 from src #0
    [SERVICE: 0xA04,21:48:31 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,21:48:31 INFO] [1] input #25 from src #0
    [SERVICE: 0x9F8,21:48:31 INFO] [1] firmware version: 1.62 (0x13E)
    [SERVICE: 0x9F8,21:48:31 INFO] [1] Power State: Powered
    [SERVICE: 0x9F8,21:48:31 INFO] [1] Checkpoint attempt #0
    [SERVICE: 0x9F8,21:48:31 ERROR] Did not find first letter of stage
    [SERVICE: 0x9F8,21:48:31 INFO] [1] serial number 000A27001438703A
    [SERVICE: 0x9F8,21:48:31 INFO] [1] *** CONNECTED - Sending event out, device session 0.
    [SERVICE: 0x9F4,21:48:31 INFO] [MACHINE 1 INPUT #20] - (HDW) CheckDevNode
    [SERVICE: 0x9F4,21:48:31 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9FC,21:48:31 INFO] [MACHINE 1 INPUT #21] - (HDW) CheckDevNode
    [SERVICE: 0x9FC,21:48:31 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9FC,21:48:31 INFO] [1] input #22
    [SERVICE: 0x9F8,21:48:31 INFO] [1] input #23
    [SERVICE: 0x9F4,21:48:31 INFO] [1] input #24
    [SERVICE: 0x9FC,21:48:31 INFO] [MACHINE 1 INPUT #22] - (HDW) Volume Mount
    [SERVICE: 0x9FC,21:48:31 INFO] [MACHINE 1 TRANSITION] - {Connected} ==> {Mounted}
    [SERVICE: 0x9FC,21:48:31 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9FC,21:48:31 INFO] [MACHINE 1 ACTIONS] - {Mounted}
    [SERVICE: 0x9FC,21:48:31 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x9FC,21:48:31 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x9FC,21:48:31 ERROR] Did not find first letter of stage
    [SERVICE: 0x9FC,21:48:32 INFO] [1] OS says filesystem is FAT32
    [SERVICE: 0x9FC,21:48:32 INFO] File does not exist!
    [SERVICE: 0x9FC,21:48:32 INFO] [1] iTunes Preference file does not exist!
    [SERVICE: 0x9FC,21:48:32 INFO] [1] ===== iPod Mini =====
    [SERVICE: 0x9FC,21:48:32 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0x9FC,21:48:32 INFO] 21:48:32, year 2007, day of yr. 36, GMT offset -8 isDST 1
    [SERVICE: 0x9FC,21:48:32 INFO] [1] progress is now 0
    [SERVICE: 0x9FC,21:48:34 INFO] [1] *** MOUNTED - Sending event out, device session 0.
    [SERVICE: 0x9FC,21:48:34 INFO] [1] Auto-launch iTunes ENABLED
    [SERVICE: 0x9FC,21:48:34 INFO] iTunes located at 'C:\Arquivos de programas\iTunes\iTunes.exe'
    [SERVICE: 0x9F8,21:48:34 INFO] [MACHINE 1 INPUT #23] - (HDW) CheckDevNode
    [SERVICE: 0x9F8,21:48:34 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9F4,21:48:34 INFO] [MACHINE 1 INPUT #24] - (HDW) CheckDevNode
    [SERVICE: 0x9F4,21:48:34 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9F4,21:48:34 INFO] [1] input #25
    [SERVICE: 0x9A4,21:48:34 INFO] launching iTunes.
    [SERVICE: 0x9F4,21:48:34 INFO] [MACHINE 1 INPUT #25] - (HDW) CheckDevNode
    [SERVICE: 0x9F4,21:48:34 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x900,21:48:49 INFO] <0x4> Got Serial #
    [SERVICE: 0xAD8,21:48:49 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0x480,21:48:49 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0x480,21:48:49 INFO] Mounted
    [SERVICE: 0x480,21:48:49 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x480,21:48:49 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x900,21:48:49 INFO] Mounted
    [SERVICE: 0x900,21:48:49 INFO] [1] already mounted!
    [SERVICE: 0x900,21:48:49 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0x480,21:48:51 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xAD8,21:48:51 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xAD8,21:48:51 INFO] Mounted
    [SERVICE: 0xAD8,21:48:51 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xAD8,21:48:51 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x900,21:48:51 INFO] <0x4> COM request for device 1 drive letter - G
    [SERVICE: 0xAD8,21:48:51 INFO] Mounted
    [SERVICE: 0xAD8,21:48:51 INFO] Device 0 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xAD8,21:48:51 INFO] Device 0 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xAD8,21:48:51 INFO] File does not exist!
    [SERVICE: 0xAD8,21:48:51 INFO] [1] CreateFileW error 0x3
    [SERVICE: 0xAD8,21:48:51 INFO] [1] WriteNewPrefs FAILED!
    [SERVICE: 0xAD8,21:48:51 INFO] [1] ReadDevicePreferences() failed!
    [SERVICE: 0xA04,22:16:10 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,22:16:10 INFO] [1] input #26 from src #0
    [SERVICE: 0x9FC,22:16:10 INFO] [1] input #26
    [SERVICE: 0x9FC,22:16:10 INFO] [MACHINE 1 INPUT #26] - (HDW) CheckDevNode
    [SERVICE: 0x9FC,22:16:10 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xA04,23:05:50 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,23:05:50 INFO] [1] input #27 from src #0
    [SERVICE: 0x9F8,23:05:50 INFO] [1] input #27
    [SERVICE: 0xA04,23:05:50 INFO] [DevNodesChanged]
    [SERVICE: 0xA04,23:05:50 INFO] [1] input #28 from src #0
    [SERVICE: 0x9F4,23:05:50 INFO] [1] input #28
    [SERVICE: 0x9F8,23:05:50 INFO] [MACHINE 1 INPUT #27] - (HDW) CheckDevNode
    [SERVICE: 0x9F8,23:05:50 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x9F4,23:05:50 INFO] [MACHINE 1 INPUT #28] - (HDW) CheckDevNode
    [SERVICE: 0x9F4,23:05:50 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a27001438703a&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xD58,23:16:32 INFO] <0x4> Got Serial #
    [SERVICE: 0xD58,23:16:32 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xBE0,23:16:32 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xBE0,23:16:32 INFO] Mounted
    [SERVICE: 0xBE0,23:16:32 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xBE0,23:16:32 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xD58,23:16:32 INFO] Mounted
    [SERVICE: 0xD58,23:16:32 INFO] [1] already mounted!
    [SERVICE: 0xD58,23:16:32 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xBE0,23:16:34 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xD58,23:16:34 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xD58,23:16:34 INFO] Mounted
    [SERVICE: 0xD58,23:16:34 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xD58,23:16:34 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x908,23:16:34 INFO] <0x4> COM request for device 1 drive letter - G
    [SERVICE: 0x908,23:16:35 INFO] Mounted
    [SERVICE: 0x908,23:16:35 INFO] Device 0 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x908,23:16:35 INFO] Device 0 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x908,23:16:35 INFO] File does not exist!
    [SERVICE: 0x908,23:16:35 INFO] [1] CreateFileW error 0x3
    [SERVICE: 0x908,23:16:35 INFO] [1] WriteNewPrefs FAILED!
    [SERVICE: 0x908,23:16:35 INFO] [1] ReadDevicePreferences() failed!
    [SERVICE: 0xD58,23:16:45 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xD58,23:16:45 INFO] Mounted
    [SERVICE: 0xD58,23:16:45 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xD58,23:16:45 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xBE0,23:16:45 INFO] Mounted
    [SERVICE: 0xBE0,23:16:45 INFO] [1] already mounted!
    [SERVICE: 0xBE0,23:16:45 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0x908,23:16:45 INFO] Mounted
    [SERVICE: 0x908,23:16:45 INFO] Device 0 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x908,23:16:45 INFO] Device 0 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x908,23:16:45 INFO] File does not exist!
    [SERVICE: 0x908,23:16:45 INFO] [1] CreateFileW error 0x3
    [SERVICE: 0x908,23:16:45 INFO] [1] WriteNewPrefs FAILED!
    [SERVICE: 0x908,23:16:45 INFO] [1] ReadDevicePreferences() failed!
    [SERVICE: 0xD58,23:16:45 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xD58,23:16:45 INFO] Mounted
    [SERVICE: 0xD58,23:16:45 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xD58,23:16:45 INFO] Device 1 not in intermediate state. It appears to be truly mounted.

    I formated my iPod using windows

  • How to create table(s)/indexes on a new database from an existing database

    Hello all - I need some help in finishing a task, quick response is really appreciated
    So, I have a new database that needs creation of tables including indexes and objects for two different tablespaces called CDS1 and CSD2. I have created these tablespaces and datafiles associated with them. I need some help just to create these tables and indexes from an existing database without copying any of its contents. How can I achieve this, these are 2 different servers at different locations. Can somebody give me step by step instruction - would greatly appreciate it !
    Thanks,
    Vikas

    9876543210 wrote:
    Hello all - I need some help in finishing a task, quick response is really appreciated
    So, I have a new database that needs creation of tables including indexes and objects for two different tablespaces called CDS1 and CSD2. I have created these tablespaces and datafiles associated with them. I need some help just to create these tables and indexes from an existing database without copying any of its contents. How can I achieve this, these are 2 different servers at different locations. Can somebody give me step by step instruction - would greatly appreciate it !
    Thanks,
    Vikas
    exp help=yes
    exp username/password rows=no
    How do I ask a question on the forums?
    https://forums.oracle.com/message/9362002#9362002

  • Restoring a db without an existing odbc connection

    Hey all,
    I'm looking for a way to restore a db as the first db in an
    application I have written. The app normally restores DBs as a way
    of automatically creating new sites, but if this is a new box and
    code determines the main manager DB doesn't exist, how does one
    restore a DB... without an existing ODBC to connect to the DB
    server through? I'm talking specifically about SQL Server on
    Win2003.
    Any advice?

    Ok. I gave up on trying to restore through code. Did it
    manually and have what I think is a working DB, but I cannot
    connect through CF
    Connection verification failed for data source: NemoManager
    java.sql.SQLException: [Macromedia][SQLServer JDBC
    Driver]Error establishing socket. Connection refused: connect
    The root cause was that: java.sql.SQLException:
    [Macromedia][SQLServer JDBC Driver]Error establishing socket.
    Connection refused: connect
    Any ideas? Do I have to update Java or something? Sorry, I'm
    a little dense when it comes to server stuff and Java.
    Windows 2003 Server Enterprise
    MS SQL Server 2005
    CF 7

  • HT204150 Is there a way to import contacts from dropbox without deleting or replacing existing contacts?

    Is there a way to import contacts from dropbox without deleting or replacing existing contacts?

    Do a backup. Copy the files to your Desktop, Then Contacts/Import.
    Contacts/Address Book – Import Contacts
    Contacts – Can’t Import
    If you get duplicates.
    Contacts – Resolve Duplicates

  • HT201250 I've been working on a newsletter and have the final version. But I wanted to check something in a version I did last week. If I choose the day in Time Machine, is there any way I can view that document without "restoring" it to replace the final

    I've been working on a newsletter and have the final version. But I wanted to check something in a verssion I did last week. If I choose the day in Time Machine, is there any way I can view that document without "restoring" it to replace the final version?

    You can drag and drop a file from TM to the desktop.
    Let's say your newsletter is on the desktop. First thing to do is to add something to the file name, say Newsletter_1.
    Next open TM as if it is just another external drive by double clicking the icon. (This is not the same as "Enter Time Machine" which you do when you want to restore.) The file hierachy in TM follows the same logic as on your hard drive. Navigate to the date you want, find the file you want, and drag and drop it where you want it to be. Because you changed the name of the most recent version you can both files in the same space.
    I do this often.
    But remember if you make a back up now you will end up with both versions in TM.

  • How to recover my viber messages? without replacing the other application when i will restore my last backup.

    how to recover my viber messages? without replacing the other application when i will restore my last backup.

    Maybe from the restored iPod via How to perform iPad recovery for photos, videos
    Wondershare Dr.Fone for iOS: iPhone Data Recovery - Wondershare Official     
    http://www.amacsoft.com/ipod-data-recovery.html
    iPod recovery software to restore lost music files      
    http://www.pcrecoverytools.com/ipod-data-recovery.html
    Yu also said:
    I think this is because
    I backed up a long time ago, and the iTunes update may have erased the back up?
    No, updating iTunes does not delete any iOS device backups.

  • Retrieving old photos from external hard drive without replacing current library

    Hi everyone,
    This problem has probably been discussed before but I have not been able to find a definitive answer.  Hopefully I can find a solution to this problem here.
    I am having trouble with my workflow in iPhoto.  Right now when I place an SD card full of digital photos into my Macbook Pro, I import all of them directly into iPhoto.  I use iPhoto to organize my photos and do simple edits and changes.  However, recently I have begun to fill up my 250GB hard drive with photos and HD video, so I use an external hard drive to backup my computer before deleting unneeded items.  Obviously, the purpose of backing up is to be able to go back and retrieve those items.  With items saved in Documents>Photos, they can be easily organized, and then retrieved later from whatever date they were saved on the external drive, adding them back to the existing photos currently on my computer.  However, iPhoto is a great tool, so I prefer to use it instead.  But I notice that saving an iPhoto library onto a backup drive is not the same as saving a folder full of pictures.  When I try to open an iPhoto library from my external hard drive, it tells me something about not being able to open it, or replacing my current library with the old one just to view my pictures.  I simply want to find old photos saved within iPhoto, and add them to my existing library.  Does iPhoto really only allow you to open one library at a time, and not browse them and add them together?  If so, then just saving photos outside of iPhoto in Documents seems like a better workflow for retrieval, but at the cost of not being able to utilize iPhoto's capabilities.
    If my view of how iPhoto works here is very wrong, please let me know.  I just don't want to have to save my photos outside of iPhoto just to be able to find them again without replacing my current photos.  Thanks everyone for your help. 

    iPhoto can only open one library at a time.
    Here's one way to do what you want:
    1. Quit iPhoto.
    2. Copy the iPhoto Library from your Pictures Folder to the external drive.
    Now you have two full copies of the Library. To choose between them:  Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Choose Library'
    3. On the Internal Library, remove the pics you don't want with you all the time.
    Now you have one full library on the external and another smaller sub-set on the Internal.
    A couple of comments:
    a. The external disk needs to be formatted Mac OS Extended (Journaled)
    b: When you're removing the unwanted pics from the Internal Library you need to delete them in batches of about 100 or so. Trashing more at one time can cause problems with the database.
    c: Managing Multiple Libraries - including moving pics/albums/rolls and metadata between them - is greatly facilitated by using iPhoto Library Manager

  • Problem with restore database in sql server 2008

    hi,,,when i want to restore database from a .bak file i see this error
    TITLE: Microsoft SQL Server Management Studio
    Restore failed for Server 'ALI-PC'.  (Microsoft.SqlServer.SmoExtended)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=10.50.1447.4+((KJ_RTM).100213-0103+)&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Restore+Server&LinkId=20476
    ADDITIONAL INFORMATION:
    System.Data.SqlClient.SqlError: The database was backed up on a server running version 10.50.4000. That version is incompatible with this server, which is running version 10.00.1600. Either restore the database on a server that supports the backup, or use a
    backup that is compatible with this server. (Microsoft.SqlServer.Smo)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=10.50.1447.4+((KJ_RTM).100213-0103+)&LinkId=20476
    BUTTONS:
    OK
    i checked overwrite the existing database(WUTH REPLACE) in option,but i cant restore again,,,please help me

    Hi,
    You need to install SQL Server 2008 R2 Service Pack 2
    Download
    http://www.microsoft.com/en-us/download/details.aspx?id=11093, you are currently running the RTM and the backup was from Version 10.50.4000 and your attempting to restore to version 10.00.1600.
    To find your current SQL Version open a New Query and paste the following then execute
    SELECT @@VERSION AS 'SQL Server Version
    Reference:
    http://sqlserverbuilds.blogspot.com/
    http://support.microsoft.com/kb/321185
    http://technet.microsoft.com/en-us/library/ms177512.aspx
    Cheers,
    -Ivan

  • Use of Table Valued Parameter to restore databases

    I'm a noob with table valued parameters.  Not sure if I can use TVP for what I need to do.  I want to restore/refresh multiple databases from arbitrary number of .BAK files.  I can successfully populate a TVP with the needed
    source information which includes:
    Database name
    File/device name (i.e., xxx.BAK file)
    Logical data file name
    Logical log file name
    Now I want to create a stored procedure that contains Restore Database command like this:
       RESTORE DATABASE <@database name> 
       FROM <@path and name of .bak file> 
       WITH MOVE <@logical data file> TO <new path and file name>,
       MOVE <@logical log file name> TO <new path and file name>;
    Can I replace those variables with the column values in the TVP?  I'm not sure because all the stored proc examples I see simply insert rows from the TVP into rows of an existing table.

    Yes, but you would need to run a cursor of your TVP:
    DECLARE cur CURSOR STATIC LOCAL FOR
       SELECT db, path, logical_data_file, new_data_path, logical_log_file,
              new_logfile_apth
        FROM  @TVP
    OPEN cur
    WHILE 1 = 1
    BEGIN
       FETCH cur INTO @db, @path, @logical_data_file, @new_data_path,
                      @new_logical_log_file, @new_logfile_path
       IF @@fetch_status <> 0
          BREAK
       RESTORE DATABASE @db FROM DISK = @path
       WITH MOVE @logical_data_file TO @new_data_path,
            MOVE @new_logical_log_file, @new_logfile_pth
    END
    DEALLOCATE cur
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Installation of Database instance on server where database is already exist

    Hi All,
    We have a separate oracle database team who have copied one of the database using oracel backup restore procedure. This database is in 10g and it is working fine from oracle perspective.
    Now as a basis admin i need to install database instance using the existing database. I should not overwrite this existing database but i should attach this existing database while installation of database instace.
    I have done normal installation using sapinst and installation export but not done this type of installation as yet.
    I am not aware about which option of sapinst i should use for  installation of  database instance so that it can use the existing database without overwriting it OR if i go with normal way  will it able to catch the existing database and give me the option to attah it instead of overwriting it?
    Request you all to let me know how to go about it.
    Thanks & Regards

    All, Thanks for replying
    Please find below answer to some of your quries.
    1) Yes, This is ABAP only installation.
    2) The database is oracle and the file systems on database server are as per SAP standard.
    So as per Sunny,
    Only way forward is to install the database instance using system copy method of back restore.
    I have a mail from my senior, saying
    "Normally, sapinst should sense database, SAPERP schema owner and you should be all set.
    If that does not happen, as soon as sapinst pauses - so you may continue with Oracle Universal Installer in a different window
    ,you should STOP (abandon) the Database Instance install phase."
    Here is the query.
    1) "you should STOP (abandon) the Database Instance install phase."
          I am not sure how to stop OR abandon the database instnace install phase. Do anyone knows this?
    Thanks fore your reply
    Regards

Maybe you are looking for