LogShipping 2008R2 Primary - 2014 Secondary

Hello,
I have many servers in SQL Server 2008R2 replicated via Log Shipping to one "Replica concentrator" Instance of SQL 2008R2.
Now i've been asked to upgrade the concentrator server to SQL 2014.
Did someone has and DB replicated from 2008R2 to 2014? I have found some problems with DB versions.
(I can only restore the first TLog backup, because the database is in StandBY mode and and version upgrade is nedeed)
Thank You
Rafa

Hello,
I have many servers in SQL Server 2008R2 replicated via Log Shipping to one "Replica concentrator" Instance of SQL 2008R2.
Now i've been asked to upgrade the concentrator server to SQL 2014.
Did someone has and DB replicated from 2008R2 to 2014? I have found some problems with DB versions.
(I can only restore the first TLog backup, because the database is in StandBY mode and and version upgrade is nedeed)
Thank You
Rafa
Its Literally not possible to configure fully functional logshipping between SQl server 2008 r2 and SQl server 2014. Because moment you failover to 2014 you cannot get back to 2008 r2.
As a best possible method break logshipping upgrade both server and hen configure logshipping again
you can preserver logshipping setting as well for that you must read below article
http://msdn.microsoft.com/en-us/library/cc645954.aspx
Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
My Technet Articles

Similar Messages

  • Need help with sorting records in primary and secondary databases

    Hi,
    I would like to store data into primary and secondary db in different order. For the main primary, I want it to be ordered by login_ts instead of uuid which is the key.
    For the user secondary database, I want it to be ordered by sip_user. For the timestampe secondary db, I want it to be ordered by login_ts.
    This is what I have right now,
    this is for main
    uuid=029ae227-a188-4ba8-aea4-7cbc26783d6 sip_user=200003 login_ts=1264327630 logout_ts=
    uuid=22966f76-8c8a-4ab4-b832-b36e8f8e14d sip_user=200003 login_ts=1264327688 logout_ts=
    uuid=e1846e4a-e1f5-406d-b903-55905a2533a sip_user=200003 login_ts=1264327618 logout_ts=
    uuid=e2f9a3cb-02d1-47ff-8af8-a3a371e20b5 sip_user=200003 login_ts=1264327613 logout_ts=
    this is for user search
    uuid=029ae227-a188-4ba8-aea4-7cbc26783d6 sip_user=200003 login_ts=1264327630 logout_ts=
    uuid=22966f76-8c8a-4ab4-b832-b36e8f8e14d sip_user=200003 login_ts=1264327688 logout_ts=
    uuid=e1846e4a-e1f5-406d-b903-55905a2533a sip_user=200003 login_ts=1264327618 logout_ts=
    uuid=e2f9a3cb-02d1-47ff-8af8-a3a371e20b5 sip_user=200003 login_ts=1264327613 logout_ts=
    this is for timestamp
    uuid=029ae227-a188-4ba8-aea4-7cbc26783d6 sip_user=200003 login_ts=1264327630 logout_ts=
    uuid=22966f76-8c8a-4ab4-b832-b36e8f8e14d sip_user=200003 login_ts=1264327688 logout_ts=
    uuid=e1846e4a-e1f5-406d-b903-55905a2533a sip_user=200003 login_ts=1264327618 logout_ts=
    uuid=e2f9a3cb-02d1-47ff-8af8-a3a371e20b5 sip_user=200003 login_ts=1264327613 logout_ts=
    but what I want is :
    this is for main
    uuid=e2f9a3cb-02d1-47ff-8af8-a3a371e20b5 sip_user=200003 login_ts=1264327613 logout_ts=
    uuid=e1846e4a-e1f5-406d-b903-55905a2533a sip_user=200004 login_ts=1264327618 logout_ts=
    uuid=029ae227-a188-4ba8-aea4-7cbc26783d6 sip_user=200003 login_ts=1264327630 logout_ts=
    uuid=22966f76-8c8a-4ab4-b832-b36e8f8e14d sip_user=200005 login_ts=1264327688 logout_ts=
    this is for user search
    uuid=e2f9a3cb-02d1-47ff-8af8-a3a371e20b5 sip_user=200003 login_ts=1264327613 logout_ts=
    uuid=029ae227-a188-4ba8-aea4-7cbc26783d6 sip_user=200003 login_ts=1264327630 logout_ts=
    uuid=e1846e4a-e1f5-406d-b903-55905a2533a sip_user=200004 login_ts=1264327618 logout_ts=
    uuid=22966f76-8c8a-4ab4-b832-b36e8f8e14d sip_user=200004 login_ts=1264327688 logout_ts=
    this is for timestamp
    uuid=e2f9a3cb-02d1-47ff-8af8-a3a371e20b5 sip_user=200003 login_ts=1264327613 logout_ts=
    uuid=e1846e4a-e1f5-406d-b903-55905a2533a sip_user=200003 login_ts=1264327618 logout_ts=
    uuid=029ae227-a188-4ba8-aea4-7cbc26783d6 sip_user=200004 login_ts=1264327630 logout_ts=
    uuid=22966f76-8c8a-4ab4-b832-b36e8f8e14d sip_user=200004 login_ts=1264327688 logout_ts=
    Right now, I have:
    int compare_login_ts(dbp, a, b)
         DB *dbp;
         const DBT a, b;
         int time_a = 0;
         int time_b = 0;
         time_a = atoi ( (char *)a->data);
         time_b = atoi ( (char *)b->data);
         return time_a - time_b ;
    for the timestamp secondary, I set that compare function:
              if ((ret = (*sdb)->set_bt_compare(*sdb , compare_login_ts )) != 0){
    Does anyone know how can I make it sorted according?

    Hi,
    The DB->set_bt_compare() is used to compare keys in Btree database. In the callback function, both the DBTs are key, but not data. Please refer to http://www.oracle.com/technology/documentation/berkeley-db/db/api_reference/C/dbset_bt_compare.html.
    If you want any field in the data to be sorted, you might create a secondary index on it and define the compare function as you wish.
    Regards,
    Emily Fu, Oracle Berkeley DB

  • Is possible to have a time machine backup on an external hd connected to either a primary or secondary router and not have "back to my mac" using 10.7.3?

    Is possible to have a time machine backup on an external hd connected to either a primary or secondary router and not have "back to my mac" using 10.7.3?

    The bottom line is that Apple does not support Time Machine backups at the USB port of the AirPort Extreme. If they don't support their own router, they certainly don't support other routers from other manufacturers.
    Connect the drive directly to the Mac using either USB or FireWire.....or....use a Time Capsule.  Either of these setups will be supported.
    If you want to try the unsupported method(s), you can certainly do so. But, I would suggest that you have a secondary backup plan in place if this is important data that you will be backing up.

  • Magic Mouse Primary and Secondary Clicks Switched

    Recently I picked up a Magic Mouse and have since found some very strange things that I don't know how to fix:
    The primary and secondary clicks are switched. As in, under mouse settings when I select the secondary click to be on the right, only the primary click works on the right side and everything else is a secondary click. It is also very annoying because every time I have more than one finger touching the surface it counts as a secondary click. If anyone knows how to fix this I would really appreciate feedback.
    I looked around in settings and couldn't find anything regarding this matter. I fiddled with some stuff but never got it working properly.
    Feedback much appreciated!
    --Justin

    Looking at another thread in this forum, I see some people who had older apple mice installed before the magic mouse are having this problem with the magic mouse.
    I had an older wireless mouse that would take right-clicks before I set up the magic mouse. Unfortunately when I connect the older wireless mouse I can no longer access it's preferences. It only gives me the preferences a generic one button mouse. Somewhere there must be some set of files I can delete and it will forget this old mouse.
    I am pretty disheartened after a week of this. One of the benefits to a mac is that I shouldn't have to dig around removing drivers and such

  • Setting up a primary and secondary Database in Oracle 10G

    Hi Experts
    can you please tel me the steps involved in creation of primary and secondary database? This is the first time i am going to configure this setup. Please provide your helping hands.
    Thanks alot in advance,
    Ram

    Absolutely glad to help.
    Step 1: Clarify what it is you are trying to build. Are you talking about a Standby Database? Perhaps Physical or Logical Data Guard? If so what protection mode? Stand-alone or RAC? Or are you just trying to dup an existing database on another server in which case you can just use RMAN.
    Step 2: Go to http://tahiti.oracle.com and read the relevant docs
    Step 3: Go to http://metalink.oracle.com and look at the Knowledge Base docs
    If you have any question thereafter contact us and be sure to include your version number, not a marketing label. 10g is a marketing label that refers to everything from the 10.1 Beta through 10.2.0.4.

  • ITunes U course published but I can't see my school in the Primary and Secondary Schools list

    I don't know how to contact the responsable of the iTunes U administration to send an email and change the name of my school.
    I want to change  Villaviciosa De Odón - Colegio Pax-Casvi into "Eurocolegio Casvi".  Anyway, even my organization has been approved for courses publishing, I can't find the name of my school at the list of iTunes U "Primary and Secondary" schools.
    If I go to https://itunesu.itunes.apple.com/audit/633264363, the course is in the iTunes U.

    you might want to check on this possibility:
    No music shows up in iTunes after upgrading

  • Is it possible to set primary and secondary display with 2 graphics cards?

    I have an Early 2008 Mac Pro with two graphics cards and four monitors installed. Does anyone know how the computer (or more specifically Keynote) determines which is the primary display and which is the secondary?
    Also is there any way to change the scheme?
    What I am trying to do is switch the primary and secondary from the two monitors in my office to the monitor at the podium (would like it to become primary) and a vga projector (would like it to become secondary)
    I bought the second graphics card so I wouldn't have to switch the cables back and forth three times a week. All the monitors work fine, it's just a matter of determining or changing primary/secondary
    Thanks in advance

    Thanks Malcolm
    I got that far – The keynote manual says that the display with the menu bar is the primary display – that works out fine. The problem is that the manual says that the display without the menu bar is the secondary (or alternate). But there are three displays without the menu bar.
    What I would like to find out is: is there a way to choose the display without the menu bar to be the alternate?
    When I try various combinations, there seems to be no rhyme or reason as to which display is the alternate.
    Thanks again for your response!

  • I reset my IPAD password but the verification email wasn't sent to my primary or secondary email address.  Without the verification email I can't complete the password change process.  Any recommendations?

    I reset my IPAD password but the verification email wasn't sent to my primary or secondary email address.  Without the verification email I can't complete the password change process.  Any recommendations?

    Great tip from dorothy.  Also, some isp services are more aggressive from others in filtering what they think might be spam.  You might check your spam file from a computer, and see if the verification e mails are sitting there.   When i wen through the process, the verification e mail came to the new e mail address in under a couple of minutes.

  • Question about Berkeley DB Primary Index/Secondary Index in DPL package

    We are using DPL package for BDB access.
    My question is about memory consumption by Primary or Secondary Index. We are using BDB only for Read Purposes
    e.g. Let's say if we are using BDB to store 250GB of Raw Data (which will translate to .jdb files which will have all indexes). Each box is having around 32GB memory.
    1) So when we call method store.getPrimaryIndex(....) or Create Secondary Index; how much size these Indexes will take up in memory ?
    2) Is it advisable to keep these Indexes in memory all the time ?
    Thanks,

    I have a couple caveats to add on DbCacheSize.
    1) It is an estimate, and for ordinary databases (without duplicate keys) is an upper bound.
    2) For databases with duplicate keys (in the DPL these are MANY_TO_ONE and MANY_TO_MANY secondary indices), it is incorrect and can be used as a lower bound.
    So it gives only a rough estimate. If you need an accurate number, write a DPL-based program that creates a realistic data set and look at EnvironmentStats.getCacheTotalBytes to see how much memory is used prior to any eviction occurring, which is indicated byEnvironmentStats.getNEvictPasses. Use a machine that has as much memory as possible, set the Java heap size and the JE cache size to the maximum possible, and create the data set as close as possible to the size you expect in production.
    2) Is it advisable to keep these Indexes in memory all the time ?Yes. The FAQ has multiple entries on this topic in the performance section.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to bind the Zero line between a primary and secondary Y axis?

    All -
    We are using combination charts with:
    - primary and secondary Y axis (Sales versus Volume).
    - Scale: Auto (Y) Axis
    - Linear
    - Fixed Label Size
    In instances where one axis has a negative value and the value ranges are diverse the Zero line will be different for both. This causes some confusion when trying to read. Other that putting in manual (Y) axis with min and max, is there a way to force the chart to keep the same Zero line?
    Thanks!

    KOENIG Yvan wrote:
    It's quite a basic requirement for a spreadsheet program
    It's your point of view. It seems that it's not the designers's one
    Obviously, true
    The number of different features described once as "a basic requirement" is really amazing but a feature asked once is perhaps not one which must be added to a program like Numbers.
    Other tools are available for professional numbers crunchers .
    I know there are other threads asking about secondary axes, but your point is taken. I'm definitely not a number cruncher, but I am/was a pretty advanced Excel user.
    _Go to "Provide Numbers Feedback" in the "Numbers" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'09
    Thanks for that, I didn't quite know where to go for the feedback - provided and fingers crossed.
    Cheers!

  • Can't find my DNS Primary and Secondary

    Dear God, I need my DNS primary and secondary. I'm trying to set my xbox 360 up with it's own ip ect. I've gone to my airport to get this information but my DNS is the same as the IPv4 router. My xbox requires a DNS primary and secondary. The only thing I can find for my DNS is a Domain Name and Server address: 10.0.1.1 Do I put this number in my xbox for the DNS with no secondary?

    I think your router is not configured properly for your internet connection. Router is not giving out a valid DNS to the computers because it cannot obtain it (dns) from the modem. Is your connection Cable or DSL?

  • Primary and secondary Email accounts

    Hello,
    Is there a way to specify primary and secondary email account ? In case if the primary server is down, the secondary server would be used for sending the notification.
    Thanks.

    I am implementing something similar to what you have suggested. I was wondering if there is a way to achieve this by just changing configuration. Looks like it is not possible to configure it and coding it is the only way out.
    Thanks for your inputs :)

  • Upgrade packages from 2008R2 to 2014/SSDT2013

    We are going to upgrade our environment from 2008R2 to 2014. This means both database engine and packages will be upgraded to 2014 and SSDT2013 respectively.
    Has anyone experienced this scenario? Can you give me some advise or checklist before upgrading packages or if possible TSQL/store proc changes/testing. 
    How do you have done testing after upgrading packages for result scan (output comparison with 2008R2 packages)?
    Any recommendation besides running upgrade advisor?
    Thanks in advance! :)
    ZK

    Hi ZK,
    Based on my research, some custom SSIS Tasks can always throw error after upgrading packages from SQL Server 2008 R2 to SQL Server 2014. After going thru the upgrade wizard you need to do several things:
    Change your custom tasks and components to target the .NET 4.0 Framework in each of the project properties, in the Application Tab, under Target framework.
    Update the assembly references in each of your projects to point to the appropriate SqlServer dlls.
    Build and copy your project dlls to the appropriate directory, depending on what kind of components you are updating, i.e. Program Files (x86)\Microsoft SQL Server\120\DTS\PiplelineComponents
    Register your components in the GAC.
    Close Visual Studio and then reopen; open your SSIS packages and refresh the SSIS Toolbox, by right clicking in the tool box and selected Refresh Toolbox.
    Besides, if some of your script task throw errors to you, we can open the script task in VSTA, insert Breakpoint to debug the scripts, then find the root cause. For more details, please see:
    Debug a Script by Setting Breakpoints in a Script Task and Script Component
    The following similar thread is for your reference:
    http://nobrainerlab.com/2013/02/19/ssis-script-task-upgrade-to-ssis-2012/
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Windows 8.1 screen bounces between primary and secondary monitors

    I have a Lenovo T530 laptop with a docking station and a IBM monitor L200P attached to it.
    Up until yesterday, this configuration was running Windows 8 Pro with no issues.
    However today, after I installed the Windows 8.1 upgrade, I started having problems with the screen bouncing between the primary and secondary monitors without my intervention. The problem happens very regularly, regardless of whether I have selected the laptop as primary monitor or the IBM monitor attached to the docking station.
    I verified that the problem does not happen with Windows 7 and Windows 8 installation and only starts appearing after the Windows 8.1 upgrade is applied.
    Does anybody have similar problems
    Thank you in advance.

    O''philipp [[#answer-697652|said]]''
    <blockquote>
    another thing you could try is this: enter '''about:config''' into the firefox address bar (confirm the info message in case it shows up) & search for the preference named '''layout.css.devPixelsPerPx'''.
    double-click it and change its value to '''1.2''' (or any other zoom factor that fits your purpose: 1.0 relates to 100%, 1.2 equals 120% and so on; -1.0 is the default value and will adhere to the system settings).
    </blockquote>
    Okay, I tried it, set it to 1.2 and even more stuff got blurry and fuzzy. Besides everything in the FF menu bar everything in the header on youtube and a few other pages did it too. It did make the pages fill the actual page better, but the blur is worse than this prob so I set it back to -1.0.
    Any other ideas?

  • P965 Neo-f - primary and secondary ide channel stops working after changing gpu

    I just changed my graphic card from 4850 to 4870x2 and then my idd devices stopped working, and when I look in device manager the primary and secondary ide channel has a yellow exclamationmark over them. And the error msg is as follow: This device cannot find enough free resources that it can use. (Code 12)
    And when I look on the tab resources the two I\O range tabs have a red cross like over them probably meaning there is something wrong. And in the column Conflicting devies list: Input/Output Range 01F0 - 01F7 not available.
    Input/Output Range 03F6 - 03F6 not available.
    What I have tried so far:
    Updating the bios, looking for I\o range crashes and irq crashes, uinstalling and reintalling severals times. And when I change back to my old 4850 card the problems disappears straight away.
    Any ideas?

    Quote from: Crispin on 28-April-09, 20:15:49
    Well reality says something different  :D
    And a reinstall fixed the problem. I find this post very amusing.
    Ill bet your graphics doesnt even use its full potential on that board.
    Me thinks it severly limited by the board and the cpu and imo a waste of a good graphicscard/money.
    Its better to use only 2 slots of mem because of the strain you put on your memorycontroller when using 4 slots.
    When running " double dualchannel"  the memorycontroller can be overflooded when running too high mem.speeds, with errors and BSOD and crashes as a result.

Maybe you are looking for

  • How to repeat the header in af:table with row exceed ?

    Hi All , I am using JDeveloper 11.1.2.0 My Scenario is I have one <af:table> with 100 rows if I click the print it prints first 50 rows in first page remaining rows print in the second page without column Names. I am using header text for create the

  • DataControl not participating in frame transaction parent child taskflow

    JDEV: 11.1.2.4.0 My application has a parent and multiple child taskflows as tabs.  one of the child page has appModule method binding which modifies entities in the appModule. call works without any issues first time but subsequent calls displaying

  • "Delete data and restore" option in Nokia N8

    I want to restore my N8 to fresh state as I have installed and uninstalled too many apps and they all have created and left a lot of files on C drive even after uninstalling them. They have ocupied some space on C drive. I am going for "Delete data a

  • Problem accessing Outlook from a site on one of my computers

    This is difficult to explain. I have two computers -one laptop and one desktop. We have upgraded to Windows 7 on both but I do not do updates on the laptop. I work on a website - and there is an availability to click on an icon in one of their pages

  • Another Sync question

    When I add contacts in my iPhone only names and addresses show up in the address book on the cpu. No phone numbers. Any suggestions? Thanks in advance.