Can CDC enabled database DIFF backups be RESTORED while maintaining the CDC integrity?

We tried restoring FULL + subsequent DIFF backups of a CDC enabled database to a different SQL server and found that the CDC integrity is not being maintained. We did RESTORE the databases with the KEEP_CDC option.
Can someone please guide us on how to successfully restore the CDC enabled database backups(FULL + DIFF) while maintaining the CDC integrity?
Note: SQL Server Version: SQL Server 2012 SP1 CU2

Hi YoungBreeze,
Based on your description, I make a test on my computer.
Firstly, I create a database named ‘sqldbpool’ , then enable the
Change Data Capture (CDC) feature and take full+ differential backups of the database. Below are the scripts I used.
-- Create database sqldbpool
CREATE DATABASE [sqldbpool] ON PRIMARY
( NAME = N'SQLDBPool', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool.mdf' , SIZE = 5120KB ,
MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
LOG ON
( NAME = N'SQLDBPool_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool_log.LDF' , SIZE = 3840KB ,
MAXSIZE = 2048GB , FILEGROWTH = 10%)
GO
use sqldbpool;
go
-- creating table
create table Customer
custID int constraint PK_Employee primary key Identity(1,1)
,custName varchar(20)
--Enabling CDC on SQLDBPool database
USE SQLDBPool
GO
EXEC sys.sp_cdc_enable_db
--Enabling CDC on Customer table
USE SQLDBPool
GO
EXEC sys.sp_cdc_enable_table
@source_schema = N'dbo',
@source_name = N'Customer',
@role_name = NULL
GO
--Inserting values in customer table
insert into Customer values('jugal'),('shah')
-- Querying CDC table to get the changes
select * from cdc.dbo_customer_CT
--Taking full database backup
backup database sqldbpool to disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpool.bak'
insert into Customer values('111'),('222')
-- Querying CDC table to get the changes
select * from cdc.dbo_customer_CT
--Taking differential database backup
BACKUP DATABASE sqldbpool TO DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpooldif.bak' WITH DIFFERENTIAL
GO
Secondly, I restore the ‘sqldbpool’ database  in a different SQL Server instance with the following scripts. After the restoration, everything works as expected and the database maintains the CDC integrity.
Use master
Go
--restore full database backup
restore database sqldbpool from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpool.bak' with keep_cdc
Restore Database sqldbpool From Disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpool.bak'
With Move 'SQLDBPool' To 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool.mdf',
Move 'SQLDBPool_log' To 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool_log.LDF',
Replace,
NoRecovery;
Go
--restore differential database backup
restore database sqldbpool from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpooldif.bak' with keep_cdc
--add the Capture and Cleanup jobs
Use sqldbpool
exec sys.sp_cdc_add_job 'capture'
GO
exec sys.sp_cdc_add_job 'cleanup'
GO
insert into Customer values('TEST'),('TEST1')
-- Querying CDC table to get the changes
select * from cdc.dbo_customer_CT
When we restore a CDC enabled database, we need to note that the CDC feature is available only on the Enterprise, Developer, and Evaluation editions of SQL Server. And we need to add the Capture and Cleanup agent jobs after restoring the database.
For more details about restoring a CDC enabled database in SQL Server, you can review the following similar articles.
Restoring a SQL Server database that uses Change Data Capture:
http://www.mssqltips.com/sqlservertip/2421/restoring-a-sql-server-database-that-uses-change-data-capture/
CDC Interoperability with Mirroring and Recovery:
http://www.sqlsoldier.com/wp/sqlserver/cdcinteroperabilitywithmirroringandrecovery
Thanks,
Lydia Zhang

Similar Messages

  • [Forum FAQ] How do I restore the CDC enabled database backups (FULL + DIFF) while maintaining the CDC integrity

    Question
    Background: When restoring Full + DIFF backups of a Change Data Capture (CDC) enabled database to a different SQL server, the CDC integrity is not being maintained. We did RESTORE the databases with the KEEP_CDC option.
    How do I successfully restore the CDC enabled database backups (FULL + DIFF) while maintaining the CDC integrity?
    Answer
    When restoring a CDC enabled database on a different machine that is running SQL Server, besides using use the KEEP_CDC option to retain all the CDC metadata, you also need to add Capture and Cleanup jobs. 
    In addition, as you want to restore FULL + DIFF backups of a CDC enabled database, you need to note that the KEEP_CDC and NoRecovery options are incompatible. Use the KEEP_CDC option only when you are completing the recovery. I made a test to display
    the whole process that how to restore the CDC enabled database backups (FULL + DIFF) on a different machine.
    Create a database named ’CDCTest’ in SQL Server 2012, then enable the CDC feature and take full+ differential backups of the database.
    -- Create database CDCTest
    CREATE DATABASE [CDCTest] ON  PRIMARY
    ( NAME = N'CDCTest ', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\ CDCTest.mdf' , SIZE = 5120KB ,
    MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
     LOG ON
    ( NAME = N'CDCTest _log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\ CDCTest _log.LDF' , SIZE = 3840KB ,
    MAXSIZE = 2048GB , FILEGROWTH = 10%)
    GO
    use CDCTest;
    go
    -- creating table
    create table Customer
    custID int constraint PK_Employee primary key Identity(1,1)
    ,custName varchar(20)
    --Enabling CDC on CDCTest database
    USE CDCTest
    GO
    EXEC sys.sp_cdc_enable_db
    --Enabling CDC on Customer table
    USE CDCTest
    GO
    EXEC sys.sp_cdc_enable_table
    @source_schema = N'dbo',
    @source_name = N'Customer',
    @role_name = NULL
    GO
    --Inserting values in customer table
    insert into Customer values('Mike'),('Linda')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking full database backup
    backup database CDCTest to disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ CDCTest.bak'
    insert into Customer values('David'),('Jane')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking differential database backup
    BACKUP DATABASE CDCTest TO DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ CDCTestdif.bak' WITH DIFFERENTIAL
    GO
    Restore Full backup of the ‘CDCTest’ database with using KEEP_CDC option in a different server that is running SQL Server 2014.
    Use master
    Go
    --restore full database backup
    restore database CDCTest from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTest.bak' with keep_cdc
    Restore Diff backup of the ‘CDCTest’ database.
    Restore Database CDCTest From Disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTest.bak'
        With Move 'CDCTest' To 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\DATA\CDCTest.mdf',
            Move 'CDCTest _log' To 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\DATA\CDCTest _log.LDF',
            Replace,
            NoRecovery;
    Go
    --restore differential database backup
    restore database CDCTest from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTestdif.bak' with keep_cdc
    Add the Capture and Cleanup jobs in the CDCTest database.
    --add the Capture and Cleanup jobs
    Use CDCTest
    exec sys.sp_cdc_add_job 'capture'
    GO
    exec sys.sp_cdc_add_job 'cleanup'
    GO
    insert into Customer values('TEST'),('TEST1')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    Reference
    Track Data Changes (SQL Server)
    Restoring a SQL Server database that uses Change Data Capture
    Applies to
    SQL Server 2014
    SQL Server 2012
    SQL Server 2008 R2
    SQL Server 2008
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Question
    Background: When restoring Full + DIFF backups of a Change Data Capture (CDC) enabled database to a different SQL server, the CDC integrity is not being maintained. We did RESTORE the databases with the KEEP_CDC option.
    How do I successfully restore the CDC enabled database backups (FULL + DIFF) while maintaining the CDC integrity?
    Answer
    When restoring a CDC enabled database on a different machine that is running SQL Server, besides using use the KEEP_CDC option to retain all the CDC metadata, you also need to add Capture and Cleanup jobs. 
    In addition, as you want to restore FULL + DIFF backups of a CDC enabled database, you need to note that the KEEP_CDC and NoRecovery options are incompatible. Use the KEEP_CDC option only when you are completing the recovery. I made a test to display
    the whole process that how to restore the CDC enabled database backups (FULL + DIFF) on a different machine.
    Create a database named ’CDCTest’ in SQL Server 2012, then enable the CDC feature and take full+ differential backups of the database.
    -- Create database CDCTest
    CREATE DATABASE [CDCTest] ON  PRIMARY
    ( NAME = N'CDCTest ', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\ CDCTest.mdf' , SIZE = 5120KB ,
    MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
     LOG ON
    ( NAME = N'CDCTest _log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\ CDCTest _log.LDF' , SIZE = 3840KB ,
    MAXSIZE = 2048GB , FILEGROWTH = 10%)
    GO
    use CDCTest;
    go
    -- creating table
    create table Customer
    custID int constraint PK_Employee primary key Identity(1,1)
    ,custName varchar(20)
    --Enabling CDC on CDCTest database
    USE CDCTest
    GO
    EXEC sys.sp_cdc_enable_db
    --Enabling CDC on Customer table
    USE CDCTest
    GO
    EXEC sys.sp_cdc_enable_table
    @source_schema = N'dbo',
    @source_name = N'Customer',
    @role_name = NULL
    GO
    --Inserting values in customer table
    insert into Customer values('Mike'),('Linda')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking full database backup
    backup database CDCTest to disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ CDCTest.bak'
    insert into Customer values('David'),('Jane')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking differential database backup
    BACKUP DATABASE CDCTest TO DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ CDCTestdif.bak' WITH DIFFERENTIAL
    GO
    Restore Full backup of the ‘CDCTest’ database with using KEEP_CDC option in a different server that is running SQL Server 2014.
    Use master
    Go
    --restore full database backup
    restore database CDCTest from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTest.bak' with keep_cdc
    Restore Diff backup of the ‘CDCTest’ database.
    Restore Database CDCTest From Disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTest.bak'
        With Move 'CDCTest' To 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\DATA\CDCTest.mdf',
            Move 'CDCTest _log' To 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\DATA\CDCTest _log.LDF',
            Replace,
            NoRecovery;
    Go
    --restore differential database backup
    restore database CDCTest from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Backup\CDCTestdif.bak' with keep_cdc
    Add the Capture and Cleanup jobs in the CDCTest database.
    --add the Capture and Cleanup jobs
    Use CDCTest
    exec sys.sp_cdc_add_job 'capture'
    GO
    exec sys.sp_cdc_add_job 'cleanup'
    GO
    insert into Customer values('TEST'),('TEST1')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    Reference
    Track Data Changes (SQL Server)
    Restoring a SQL Server database that uses Change Data Capture
    Applies to
    SQL Server 2014
    SQL Server 2012
    SQL Server 2008 R2
    SQL Server 2008
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • What are the commands using in SAP ECC 6.0 ehp on SYBASE Database? Backup and restore commands?

    Hi All,
    What are the commands using in SAP ECC 6.0 ehp on SYBASE Database? Backup and restore commands?

    Hi Jayachander,
    Have a look at these sap notes:
    For taking backup: Schedule from DB13 and get the exact command from Logs
    1841993 - SYB: How to schedule backups in DBA Cockpit
    1887068 - SYB: Using external backup and restore with SAP Sybase ASE
    How to restore DB
    1611715 - SYB: How to restore a Sybase ASE database server (Windows)
    Divyanshu

  • HT201269 I'm trying to set up my new iPhone using iCloud - I entered my apple ID and password and selected the backup to restore from but the next page asks me to enter a password for a DIFFERENT apple ID

    I'm trying to set up my new iPhone using iCloud - I entered my apple ID and password and selected the backup to restore from but the next page asks me to enter a password for a DIFFERENT apple ID

    What different Apple ID? Yours? Your friends? Your dogs... ? I think we are going to need more information. You're probably best setting up the phone as a new phone and restoring from iCloud later on.

  • Wherre can I find how to backup my recent purchases from the I tunes store?

    Where can I find how to backup my recent purchases from the I tunes store?

    I suspect you're looking for a replacement for the backup to disc option.
    Try this thread...
    tt2

  • How can I enable Active Directory network login while maintaining the existing local user account data?

    We have a user base of around 15 Macs that we would like to integrate into Active Directory. However, we need to maintain the existing users local account data but do not wish to have that data moved to the network. Is there an easy way to create the AD login and then move the existing account data to the new login while maintaining correct permissions?
    I've had some success logging in as root and deleting the existing account, while maintaining the home folder. Then renaming it to match the AD login account name and replacing the new and empty AD user home.  I then perform a CHOWN on that folder to give ownership to the AD account name.
    Is it this simple? I don't want to leave any loose ends.
    Thanks for any help you can provide,
    Scott

    JamesSTJ wrote:
    Oh, found it!
    And guess what? Apple wanted to charge me a one time fee of $600 to answer that question.
    It worked! thanks!
    I guess I'm cheap

  • Can't install safari extensions, I get the error message "Safari can't install this extension, An error occurred while installing the extension "Pin It Button"." Any suggestions?

    Every time I try and install an extension for Safari I get the error message "Safari can’t install this extension, An error occurred while installing the extension “Pin It Button”." I have all the latest updates, working on OS X Yosemite v 10.10.2 / Safari v 8.0.3. Any suggestions?

    Back up all data before proceeding.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Use the search box in the toolbar of the Keychain Access window to search for an item named "Safari Extensions List". If found, delete it. Quit Keychain Access.
    Quit and relaunch Safari.

  • What can I do when my iPad runs slow while searching the web?

    What can I do when my iPad runs slow while searching the web?

    Goto  Setiings > Safari... Clear Cookies & Data.
    Then...
    Close All Open Apps... Sign Out of your Account... Perform a Reset...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons..

  • Can't find Time Machine backup for restore

    Hard drive died for my MacBook, now I'm trying to restore from the Time Machine file. I have a Linux server set up for Time Machine backup. I've mounted the server to /Volumes/Time Machine, which seems to be working fine, I can see the files there. Problem is the Time Machine restore tool cannot find that drive
    Any ideas, is there a way to manually point it to the backup?

    Oliver Jobson wrote:
    My MBP is plugged into my lan, my time machine is on another mac on my network, but after inserting the install disc in the MBP (I have upgraded to a bigger drive on my MBP) I try to restore from the time machine, but it isn't finding the TM! Does it have to be over wifi as per the on screen instructions?
    No. Connect the drive directly to your Mac. See #14 in Time Machine - Frequently Asked Questions (or use the link in *User Tips* at the top of this forum).
    Save that hair!

  • HT1766 How can I select an older backup to restore my device from, rather than restoring from last backup performed?

    I did a backup after doing a sync with my iTunes only to find that I un-ticked the sync apps box, resulting in my apps to be deleted and most of them losing their data. I have all the data of these apps on backups I did previously to the most recent one but don't know how to select older backups.
    Is their anyway to restore my device from an older backup, rather than the most recent one?

    Knowing where backups are stored is one thing, interpreting them (and getting them back to your iOS device) is another!
    If you did your sync, but no backup immeiately after it (for some reaon some people do) then you may have success. Without connecting your iPad to our computer, go to the screen I mentioned in my earlier post and put a tick in the box PREVENT IPOD .... FROM BACKING UP AUTOMATICALLY and click OK. Then connect your iPad and restore from the previous backp if it is there! You can then go back and change the PREVENT...... setting.
    When you get this all sorted out you can consider iCloud for additional backups. If you do not use iCloud routinely then you can switch it on temporarily to do a manual backup, even multiple backups.
    However, you can trick iTunes into doing additional backups by changing the device name. For instance, you can do a backup under the device name of, say, Liam's iPad, then change the iPad name to Liam's iPad 1, Liam's iPad 2, etc with a backup under each name! Whichever backup name you use in due course to restore your iPad is the name that will appear as your device name under Settings on the iPad.

  • HT4946 How can you reset a lost password in the itunes backup and restore? Not the apple id and password.

    How do you reset a lost password in the backup and restore section of ITUNES?

    Contact the iTunes Store customer support department through the form at the bottom of their web page and explain the problem to them.

  • I can't delete songs off of my iPhone while in the "On this iPhone" tab in iTunes?

    Well what I'd like to be able to do is to delete songs while in the "on this iPhone" tab. It's the one that allows you to add songs straight to your phone without going through the trouble of syncing or selecting playlists and all that. I believe it is more convenient to do this than to have only certain things sync because I can add or delete only a couple songs at a time. The issue is that there does not seem to be a delete option in this menu. I've searched and can only find solutions that talk about going through a whole syncing process. Hopefully there is an easy way to delete so I don't have to go through the giant mess of syncing everything.

    Hello bval2016,
    Thank you for the question.  If you are not able to manually sync music to your iPhone 4s, I recommend checking if you have the "Manually manage music and videos" option enabled in the Summary tab:
    To delete songs from the "On this iPhone" section, highlight the songs and press the delete key on your keyboard.  You can find all the steps to manually sync music in the following article:
    Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/HT1535
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How can I export a Keynote presentation to Quicktime while maintaining my set transitions?

    I try to export a Keynote presentation to Quicktime. This works, obviously, although it doesn't maintain the carefully timed transitions I set up. Instead, it just the default transition time for every slide, instead of the custom transitions I entered.
    The default transition time now is 5 seconds. I tried removing the 5 but it just returns and entering 0 seconds does exactly that; 0 seconds.
    Does anybody have an idea as to what I should do to fix this dastardly problem?

    This is a well known problem with Keynote 6.1, the only thing you can do is use Keynote 5.3 instead, if you have it.
    Meanwhile sit back and wait to see if Apple issues a fix in the schedule of updates they said they would issue during 2014.

  • What databases to backup to restore Search Enterprise configuration and search pages?

    Hello,
    If I needed to restore the Enterprise Search configuration and search pages, what SharePoint pages do I need to backup?
    SharePoint config and/or SharePoint admin databases?
    Thanks.
    Paul

    Hi Paul,
    SharePoint Enterprise Search site is stored in SharePoint Content database associated with the web application which hosts enterprise search site, if you want to resoter the search configuration and search pages(may have customized the search web part
    page), you can try to firstly test the restore of particular content database and search administrator database.
    https://technet.microsoft.com/en-us/library/jj219738.aspx#AdminDB
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How can I restore my iPhone 4's iOS5 backup without restoring iOS if the option to "Restore from Backup" doesn't appear when I right click it in the device list?

    (Lengthy question, I know Let me explain.)
    A few days ago, I decided to clear out the music on my computer. So, I copied everything out of iTunes to my external hard drive (podcasts, music, movies, tv shows, books, and apps) and deleted all that I could find, including the iTunes folder. I forgot that the iTunes library files were in there, and those went too; unsurprisingly, I was greeted with an empty library when I next opened iTunes.  After adding all my files back from my external hard drive, everything's all good there - no lost files, everything seems fine. However, since my library is a "new" library, iTunes wishes to erase everything on my iPhone 4. Which is also fine, for everything except my apps.  I'd really rather not lose all my application settings and data that are saved in my backup.  But, I cannot just "Restore from Backup" by right-clicking my device in the list in iTunes, so... I haven't synced my iPhone since I did this, so all of my data is still on there, but it's in the backup as well.  If I have to erase all iTunes content, I definitely have to be able to restore the backup over it since I don't want to lose all my settings and Springboard layout.  I'd prefer not to restore iOS because I don't want to go from iOS5 to 5.0.1, nor do I have 8 hours to download the IPSW file on my super-speedy internet connection   Any guidance on restoring my iPhone from its backup?

    Here's an interesting bit: iTunes will let me restore my iPod touch from backup: it's still running iOS 4.3.3. I figured as much... there's backups showing in the Preferences -> Devices list for both devices (and even my old, long gone iPod touch 2G), but my iPhone (on iOS5) isn't giving me any such option. I remember I had to downgrade before to get the backup restored (something went haywire in the setup assistant, and I couldn't restore a backup from iTunes there)... If it was possible to go to iOS 5.0 rather than 5.0.1 I would just do the same thing again, but iOS 5.0.1 isn't an option. I attached a screenshot. Hopefully Apple can get this nonsense sorted out; I think iOS 5 might be the root of this, somehow.

Maybe you are looking for

  • How can I move address book to numbers/excel?

    How can I move address book to numbers/excel? I tried to follow the instructions from a not-too-recent forum, but am not getting the same results. Help!

  • OLE DB Destination" failed validation and returned validation status "VS_ISBROKEN.

    Hi I have a package which has 10 sequence containers. Have 10 Flat File Source files and all is working perfect on BI Debug mode. When I deploy this package to server I am getting the following error. I have changed the property Retain the same conne

  • Error in restarting GRC server

    Dear All, i tried to restart the grc server, seen the developer trace server0 is stopped exit code is -1113. the Java VM terminated with a non-zero exit code

  • How to view develop adjustment photos on LR3.2

    I noticed after adding adjustment on library view, it stamps a small icon on the right lower corner which is very helpul.  I have many photos and when I want to separately view the only adjusted photos, how do I do this? I am sure it is simple but be

  • Cold Fusion/Flex Application Wizard crippled in Trial Version?

    Hi, I am using the 60 Day trial version of Flex Builder 3/Eclipse. I wanted to try out the much vaunted Cold Fusion/Flex Application Wizard, mainly because I could not get my head around access from Flex to an existing CFC from the documentation alon