Any experiences when using AAG in a DataWarehouse environment

Hi,
I was wondering if there some people out there that have some experience with AAG in a Data Warehouse environment.
By Data Warehouse i mean SQL Server instances with a lot of data and a lot of batch jobs running overnight (extracting and loading lots of data).
How well is AAG able to work with such a system? Is it fast enough?
I have seen somewhere that the Parallel Data Warehouse edition of SQL Server doesn't support AAG. There must be a reason for this.
greetings,
Kick Vieleers

http://msdn.microsoft.com/en-us/library/jj191711.aspx
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

  • When phone not muted, why isn't there any audio when using facetime?

    When phone not muted, why isn't there any audio when using facetime?

    What version of iMovie?
    What camera?

  • I upgraded to Lion and then all video clips on for instance Youtube freeze every tenth second to buffer more data. I have a MacBook Pro and never had any problems when using Snow Leopard. Ulf Magnusson, Sweden

    I upgraded to Lion and then all video clips on for instance Youtube freeze every tenth second to buffer more data. I have a MacBook Pro and never had any problems when using Snow Leopard. Has Lion problems with this?
    Ulf, Sweden

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Has anyone had any experience with using 'MacKeeper'?

    Has anyone had any experience using 'MacKeeper'?

    I am afraid its worsen then THAT!!. I bought two licences from those fraud spammers, liftetime with "satisfaction or moneyback guarentee".
    Both my Imac and MacPro kept crashing after installing it. All the helpdesk from zeobit did for me was sending me mails i should re-install osx and mackeeper.
    When that didnt help, the gave in. I asked my money back, as in the guarentee. Thet denied flat out. "Sir this is not OUR software causing the problem, but OSX. Go there with your complained!"
    Alsoo there newsletter......i UNLISTED 9 times now and still i get 5-8 spam mails a week.
    It´s a fraud a company !!
    Swindlers!! Alsoo see :
    https://discussions.apple.com/thread/2786697?start=0&tstart=0

  • Are there any risks when using useMessageListener="true" for JMS Adapter?

    As far as I heard there are some risks when using
    useMessageListener="true"
    (instead of "false"). Is this true?
    Or does the Partnerlink to JMS adapter became unstable?
    When exactly is it recommended to use "true" instead of "false"?
    Peter

    Hi Peter,
    What version are you using : 10.1.2 or 10.1.3 ? By default in 10.1.3 the JMS wizard sets the useMessageListener to False . I would recommned to keep it to this value unless there is a strong reason to change otherwise.
    BR,
    Mihai

  • Dbms_crypto - avoid error when using different key in lower environment

    Hello Experts,
    We are using Oracle 11.2.0.2. We are planning to implement dbms_crypto to encrypt few columns. We clone the data from production to lower environment ( DEV, QC).
    For the lower environments, we do not want to get the sensitive data from production and do not plan to use same key. Rather than getting an error when using differnt key, is it possible to get a different resultset back.
    In other words, we want the implementation to be same across environments but want to use a diffent key in lower environment and get different result (or garbage).
    Any suggestions would be greatly appreciated.
    While testing this logic, I am getting following error when using differnt key to decrypt. It works fine if I use same key.
    Error at line 1
    ORA-28817: PL/SQL function returned an error.
    ORA-06512: at "SYS.DBMS_CRYPTO_FFI", line 67
    ORA-06512: at "SYS.DBMS_CRYPTO", line 44
    ORA-06512: at line 19
    DECLARE
      l_credit_card_no    VARCHAR2(19) := '1234 5678 9012 3456';
      l_ccn_raw           RAW(128) := UTL_RAW.cast_to_raw(l_credit_card_no);
    l_key               RAW(128) := UTL_RAW.cast_to_raw('abcdefgh');
       l2_key               RAW(128) := UTL_RAW.cast_to_raw('12345678');
      l_encrypted_raw     RAW(2048);
      l_decrypted_raw     RAW(2048);
    BEGIN
      DBMS_OUTPUT.put_line('Original  : ' || l_credit_card_no);
      l_encrypted_raw := DBMS_CRYPTO.encrypt(src => l_ccn_raw,
                                             typ => DBMS_CRYPTO.des_cbc_pkcs5,
                                             key => l_key);
      DBMS_OUTPUT.put_line('Encrypted : ' || RAWTOHEX(UTL_RAW.cast_to_raw(l_encrypted_raw)));
      l_decrypted_raw := DBMS_CRYPTO.decrypt(src => l_encrypted_raw,
                                             typ => DBMS_CRYPTO.des_cbc_pkcs5,
                                             key => l2_key); --**Using different key to decrypt
      DBMS_OUTPUT.put_line('Decrypted : ' || UTL_RAW.cast_to_varchar2(l_decrypted_raw));
    END;Thank you.

    If I understand what you are trying to do ... and I may not ... it is not going to work.
    SQL> DECLARE
      2   l_credit_card_no VARCHAR2(19) := '1612-1791-1809-2605';
      3   l_ccn_raw RAW(128) := utl_raw.cast_to_raw(l_credit_card_no);
      4   l_key1     RAW(128) := utl_raw.cast_to_raw('abcdefgh');
      5   l_key2     RAW(128) := utl_raw.cast_to_raw('zyxwvuts');  -- alternate key used to attempt a different decryption
      6 
      7   l_encrypted_raw RAW(2048);
      8   l_decrypted_raw RAW(2048);
      9  BEGIN
    10    dbms_output.put_line('Original : ' || l_credit_card_no);
    11 
    12    l_encrypted_raw := dbms_crypto.encrypt(l_ccn_raw, dbms_crypto.des_cbc_pkcs5, l_key1);
    13 
    14    dbms_output.put_line('Encrypted : ' || RAWTOHEX(utl_raw.cast_to_raw(l_encrypted_raw)));
    15 
    16    l_decrypted_raw := dbms_crypto.decrypt(src => l_encrypted_raw, typ => dbms_crypto.des_cbc_pkc
    s5, key => l_key1);
    17 
    18    dbms_output.put_line('Key1 : ' || utl_raw.cast_to_varchar2(l_decrypted_raw));
    19 
    20    l_decrypted_raw := dbms_crypto.decrypt(src => l_encrypted_raw, typ => dbms_crypto.des_cbc_pkc
    s5, key => l_key2);
    21 
    22    dbms_output.put_line('Key2 : ' || utl_raw.cast_to_varchar2(l_decrypted_raw));
    23  END;
    24  /
    Original : 1612-1791-1809-2605
    Encrypted : 3534443342333642353141363846384237463732384636373943374630364234323243334539383042323135
    Key1 : 1612-1791-1809-2605
    DECLARE
    ERROR at line 1:
    ORA-28817: PL/SQL function returned an error.
    ORA-06512: at "SYS.DBMS_CRYPTO_FFI", line 67
    ORA-06512: at "SYS.DBMS_CRYPTO", line 44
    ORA-06512: at line 20

  • My back two speakers aren't producing any sound when using iTunes 7

    I've only noticed this problem since upgrading, and it doesn't happen when I'm watching movies/listening to music with other programs, and I was wondering if anyone else has had this problem. I have a 5.1 setup, so two in the front, two in the back, and one in the center, plus a subwoofer. The back two speakers won't output any noise though.

    I had the same problem. First thing I did was open Quicktime and switch the settings from 16 bit to 24 bit. I still only had sound coming out of 2 of 5.1 speakers and it sounded all distorted(this *****). Then after reading some posts here I turned up the volume all the way and sound came out of all of my speakers and was clear. I still haven't seen a real fix for the problem and I think it is unacceptable. In summary:
    16 bit setting works at all sound levels but only plays through 2 speakers no matter what your other setting are.
    24 bit setting sounds like static in all 5.1 speakers unless you turn the volume up all the way in itunes and then adjust your volume using your sound card volume control.
    T

  • Does anyone have any experience of using an Aperture library on a Drobo or Promise Pegasus? If so any problems or tips?

    My intention is to place my Aperture library a Thunderbolt Raid device and access via my Macbook Pro SSD Retina. The thinking is that I would have the capability of having a large library and wouldn't run out of space for some time - I understand that the library would also need to be backed up.
    If anyone could share their experience positive or negative I'd be very grateful.

    I have Aperture installed on a three month old Drobo 5D ( containing five WD 3 TB RED NAS hard drives) attached via Thunderbolt to my Macbook Pro with Retina Display, and Aperture is beautifully responsive with this setup.  I do have a 60 GB mSATA card installed in the Drobo 5D, but I find it makes a real difference only when you are trying to acess a lot of small files, e.g. Aperture thumbnails.  The Drobo 5D and Aperture make a good combination.
    With a folder containning a mix of large and small size files, I find that it often looks like it is going to take a long time to copy the files with the Drobo 5D, and then after a short period of time the Drobo 5D really takes off and copies files at a very high rate of speed.  In other words, don't form too hasty an opinion of how fast a group of files is going to be copied.  Also, measured speeds with the Drobo 5D are not as impressive as you might expect, but the real-world performance is quite remarkable and fully in line with my expectations. 
    Tom

  • ITunes can't sync contacts any more when using OS Mavericks

    Hi all,
    I just thought I don't get it.
    Now using Mavericks, I am no longer allowed/able to sync my contacts and even calendar via iTunes. I need to use iCloud.
    What do you think of this? iCloud is quite nice for certain things like music or maybe Calendar, but to have my Contacts in iCloud I don't like.
    At least I would like to have the choice how to sync (iCloud or iTunes like before). But only iCloud???
    My concern is data security ... Maybe I should start again knowing all contact numbers by heart like I did many years ago when mobile phones
    were not that common. That's brain training, too ;-)
    Cheers

    I reverted to Mountain Lion successfully, whew!, using these instructions*, and will use the time until this systemc is no longer viable to find another solution--keep giving apple heck & hope for change, investigate 3rd party solutions, crawl under rock with pen and paper....
    *https://discussions.apple.com/message/23645019#23645019 (solution is on page 6 of this thread)

  • I can not copy any thing when using fire fox, help

    I was using internet explorer but it had too many problems.so i moved to firefox now i can not print out any thing but lines and the pictures it will not print the words.

    Most likely because the order of vertices in which you specify your triangles defines that the backface of each triangle is towards the camera. By default backface culling is on, i.e triangles with the backface towards the camera will not get rendered. Counterclockwise order of the vertices defines the front side.
    You have 2 possibilities: reverse the order of vertices which specify your triangles or set a PolygonAttributes
    object with a different culling behavior to an Appearance object which you add to your Shape3d object.
    It is explained in the Java 3D tutorial - look for backface culling in chapter 2.6.4 - i have only an old version of it so it may have moved to a different chapter.

  • Are there any issues when using AirPlay on an Apple TV that is using a shared internet connection?

    I am currently in a hotel and I have my MacBook Pro, iPad, and Apple TV (2nd gen). The hotel I'm in has both wired and wireless internet connections. I cannot directly connect my Apple TV to either connection because the hotel connections require you to agree to some terms and conditions that the Apple TV can't access. To further complicate things the ethernet connection in my room doesn't work at all. So the solution I found to at least connect the Apple TV to the internet was this: using my MacBook Pro, I connected to the hotel wireless connection (to bypass the hotel internet's T&C). I then shared that wireless connection via ethernet to the Apple TV. It works. I can watch YouTube and Netflix but I can't take advantage of AirPlay. I've updated, restored, and reset the Apple TV numerous times, but no luck. Are there any settings or connections I'm missing?

    Airplay from what?  iTunes or iPad?
    I assume iPad - in this setup the iPad and AppleTv will be unlikely to be able to see each other on the hotel network even if both are connected wirelessly.  If they can and you don't have a user/room  specific login I'd be concerned about other users seeing my devices too.   These things are generally designed for single user access not to create your own local network.  I suspect in the T&Cs for the wi-fi service it may preclude sharing the internet connection with another device, but if it works....

  • Any suggestions when using PS Elements on iMac?

    plan to use PS13 as photo editor, asking if anything I should be aware of with that and my iMac?
    thanks,
    Don

    Many thanks Andaleeb - yes I have tried that and it seems only to add to the confusion - folders which in the Finder clearly show all my images are blank in PSE Organiser with the statement that they still have to be imported into PS Organiser. I guess that may be my fault because, due to the problems in locating files in Organiser I right clicked on them in the Finder and said 'open with PSE'. So in effect I bypassed PSE Organiser. But one would still have hoped that the folder hierarchy would be the same in Organiser and the Finder. Very confusing! I have never seen a program deal with folders etc in the way PSE does.
    all the best
    Sean

  • Any reason when use SSMS on SQL Azure, I cannot access Alter to, but only Create to?

    It is annoying have to change create to alter all time.

    Hi wyx2001,
    Please see this link:
    http://connect.microsoft.com/SQLServer/feedback/details/741947/ssms-alter-stored-procedure
    "we have taken note of this internally, and when we revisit this functionality in the future, we will try and get this resolved.
    Quick Note: The SSMS and SMO support for SQL Azure is limited and not all functionality is available. Our recommendation for operating with SQL Azure is via Web portal."
    Iric Wen
    TechNet Community Support

  • I cannot get Air Play icon on any devices when used at work

    On my advice we just got Apple Tv for our clinic but none of us can get the air play icon on our iPads or iPhones to mirror to the apple tv.  Shouldn't we be able to mirror our devices onto the apple tv?

    Here are just a few basic troubleshooting steps. Tell me more about the iPad 2. Is it wifi only? I'm asking because both the iPad and iPhone, if set up for cellular, will connect to the Web without connecting to your network. If the iPad is cellular, start by turning off the cell capability.
    Restart your wireless router.
    Give it a few minutes to boot up. Then connect the iPad to your wireless router. Turn on your AppleTV, and ensure it is connecting to the exact same wireless router. Make sure both are indeed receiving data from that router.
    Then go and perform the steps required for AirPlay. Let us know how you do.

  • HT4623 Ipad not playing any videos on Internet when using wifi

    Ipad 4 not playing any videos when using wifi

    Try this:
    1. Close all inactive apps. Double-click the Home button and hold apps in the Task Bar down until they all wiggle then tap the minus sign to close apps. Tap the home button to return to Home screen.
    2. Hold the Sleep/Wake and Home button down until you see the Apple Logo.

Maybe you are looking for