Can't restore SQL 2005 BAK to SQL 2008 R2 running on Server 2012

Hi there,
Preparing to switch from SQL 2005/Server 2003 to SQL 2008 R2 / Server 2012.   Took a backup of the SQL database on 2005 (stored at a cloud backup provider nightly) and copied to the new machine.  Unable to restore the .BAK file, with the error:
The media family on device <backup path> is incorrectly formed.  SQL Server cannot process this media family.
RESTORE HEADERONLY is terminating abnormally.  (Microsoft SQL Server, Error: 3241)
Tried it with two different backup files from two different nights, same error.  I understand that this error can show up when restoring to a lower version of SQL, but that's not the case here.
Also, I know this can occur if the BAK file is corrupt, and I can't verify that yet, but two in a row failed.  I'm hoping our cloud solution isn't part of the problem somehow.  
BAK file is 15 Gb in size, so don't have the ability to attempt the restore on the 2005 production server.   Just not enough room, and can't afford to cause performance issues on that box anyway.
Anyone know of any way to get a better handle on what's going on, or, even better, how to resolve it?
Thanks
Robin

Hello,
Since you are using a cloud solution, maybe the following article applies in your scenario.
http://www.sqlcoffee.com/Troubleshooting047.htm
Hope this helps.
Regards,
Alberto Morillo
SQLCoffee.com

Similar Messages

  • Sharepoint 2007 and SQL 2008 SP3 on Windows Server 2008 Enterprise SP2 (64-bit)

    Is there any documentation we can check if SQL 2008 SP3 is compatible with Sharepoint 2007 SP2 or SP3? Both Sharepoint and SQL servers are running on separate Virtual machines (Windows Server 2008 Enterprise SP2(64-bit)). Currently DB is running on
    SQL server 2008 SP2, and we would like to have SP3 loaded on it, but want to find if there is any compatibility issue?
    Thanks in advance!
    mh

    I'm not aware of any known issues with SQL Server 2008 SP3 and SharePoint 2007. I did a quick check and saw one person reporting an issue with their Central Admin site after applying the SQL Server update, but that's it.
    With that being said, I would strongly encourage you to test out the application of that SQL Server service pack in a non-production environment well before you apply it in production. There is always a chance that your environment has something set up in
    it that would cause an unexpected issue, and the best way to get an idea of whether or not an issue exists is by doing it somewhere else first before you do it in prod.
    John
    MCITP and MCTS: SharePoint, Virtualization, Project Server 2007
    My books on Amazon: The SharePoint 2010 Disaster Recovery Guide and
    The SharePoint 2007 Disaster Recovery Guide.
    My blog: My Central Admin.

  • Error restoring SQL 2008 R2 DB into SQL 2012: BACKUP LOG cannot be performed because there is no current database backup.

    I have a SQL 2008 R2 database that I am trying to move to 2012.  Made a full backup of the database in 2008 R2.  Recovery model is Simple, compatibility level is 2008  Went to 2012, created a dummy database, did Tasks--> Restore -->
    Database , located the backup file, selected it, changed the file locations and tried to restore the backup (with overwrite option), got the following error:
    BACKUP LOG cannot be performed because there is no current database backup.
    This is a simple task that has always worked in 2008 R2.  Does anyone know what the problem is and a possible solution?
    Thanks

    Hi,
    This error occurs when the database recovery model has been changed to Simple and/or the recovery model has been changed back to Full but a full backup has not been performed since the change.
      If a full backup has been performed, the following conditions will require that another full backup be taken:
     · The recovery model had been changed without taking a full backup
     · A SQL maintenance plan task had changed the recovery model (reindexing can cause this)
     · A backup specifying TRUNCATE_ONLY had been run on the database
     · The database was detached from another server and attached to the current server
    Additionally, if we take full database backup after the Database is set to readonly, Then transaction log backup we will end up with this error. This is expected behavior. I have list an example within the link below.
    Please check above conditions and fix your issue, if you have any concern, please let me know.
    Example:
    BACKUP LOG cannot be performed because there is no current database backup.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/b5c36e60-836f-4c9e-b9d7-3fb3f3ee4d37/backup-log-cannot-be-performed-because-there-is-no-current-database-backup
    Thanks
    Candy Zhou

  • Error "Conversion failed when converting date and/or time from character string" to execute one query in sql 2008 r2, run ok in 2005.

    I have  a table-valued function that run in sql 2005 and when try to execute in sql 2008 r2, return the next "Conversion failed when converting date and/or time from character string".
    USE [Runtime]
    GO
    /****** Object:  UserDefinedFunction [dbo].[f_Pinto_Graf_P_Opt]    Script Date: 06/11/2013 08:47:47 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE   FUNCTION [dbo].[f_Pinto_Graf_P_Opt] (@fechaInicio datetime, @fechaFin datetime)  
    -- Declaramos la tabla "@Produc_Opt" que será devuelta por la funcion
    RETURNS @Produc_Opt table ( Hora datetime,NSACOS int, NSACOS_opt int)
    AS  
    BEGIN 
    -- Crea el Cursor
    DECLARE cursorHora CURSOR
    READ_ONLY
    FOR SELECT DateTime, Value FROM f_PP_Graficas ('Pinto_CON_SACOS',@fechaInicio, @fechaFin,'Pinto_PRODUCTO')
    -- Declaracion de variables locales
    DECLARE @produc_opt_hora int
    DECLARE @produc_opt_parc int
    DECLARE @nsacos int
    DECLARE @time_parc datetime
    -- Inicializamos VARIABLES
    SET @produc_opt_hora = (SELECT * FROM f_Valor (@fechaFin,'Pinto_PRODUC_OPT'))
    -- Abre y se crea el conjunto del cursor
    OPEN cursorHora
    -- Comenzamos los calculos 
    FETCH NEXT FROM cursorHora INTO @time_parc,@nsacos
    /************  BUCLE WHILE QUE SE VA A MOVER A TRAVES DEL CURSOR  ************/
    WHILE (@@fetch_status <> -1)
    BEGIN
    IF (@@fetch_status = -2)
    BEGIN
    -- Terminamos la ejecucion 
    BREAK
    END
    -- REALIZAMOS CÁLCULOS
    SET @produc_opt_parc = (SELECT dbo.f_P_Opt_Parc (@fechaInicio,@time_parc,@produc_opt_hora))
    -- INSERTAMOS VALORES EN LA TABLA
    INSERT @Produc_Opt VALUES (@time_parc,@nsacos, @produc_opt_parc)
    -- Avanzamos el cursor
    FETCH NEXT FROM cursorHora INTO @time_parc,@nsacos
    END
    /************  FIN DEL BUCLE QUE SE MUEVE A TRAVES DEL CURSOR  ***************/
    -- Cerramos el cursor
    CLOSE cursorHora
    -- Liberamos  los cursores
    DEALLOCATE cursorHora
    RETURN 
    END

    You can search the forums for that error message and find previous discussions - they all boil down to the same problem.  Somewhere in your query that calls this function, the code invoked implicitly converts from string to date/datetime.  In general,
    this works in any version of sql server if the runtime settings are correct for the format of the string data.  The fact that it works in one server and not in another server suggests that the query executes with different settings - and I'll assume for
    the moment that the format of the data involved in this conversion is consistent within the database/resultset and consistent between the 2 servers. 
    I suggest you read Tibor's guide to the datetime datatype (via the link to his site below) first - then go find the actual code that performs this conversion.  It may not be in the function you posted, since that function also executes other functions. 
    You also did not post the query that calls this function, so this function may not, in fact, be the source of the problem at all. 
    Tibor's site

  • Database Restoring (SQL 2008 R2)

    Hi
    I am trying to restore a database in SQL 2008 R2 and I am what I am getting instead is an error message that reads, "Too many backup devices specified for backup or restore; only 64 are allowed. RESTORE HEADERONLY is terminating abnormally. (Microsoft
    SQL Server, Error: 3205". 
    Any word on how I can get about this one

    Hi,
    There is an old KB article and the error message is mostly come with SQL Server 2000. It does not apply for SQL Server 2008, but may be worth a read.
    http://support.microsoft.com/kb/833710/en-us
    Make sure that you backup file is valid. You can run SELECT @@version to determine the version and try restoring the backup file on the compatible one.
    Reference:
    http://www.vishalpatwardhan.com/2011/03/too-many-backup-devices-specified-for.html
    Hope it helps.
    Tracy Cai
    TechNet Community Support

  • Can not install SQL 2008 server R2

    Hello, 
      when I install SQL 2008 R2, there will be appear some error, and the detail log like these,
      2014-07-28 12:52:37 Slp: Running Action: NotifyProgressComplete
    2014-07-28 12:52:37 Slp: Sco: Attempting to set file full path to 'C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\SQLServer2008R2\x86\setup100.exe.config'
    2014-07-28 12:52:37 Slp: Sco: Attempting to normalize directory path 'C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\SQLServer2008R2\x86\setup100.exe.config'
    2014-07-28 12:52:37 Slp: Sco: Attempting to check if file 'C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\SQLServer2008R2\x86\setup100.exe.config' exists
    2014-07-28 12:52:37 Slp: The setup100.exe.config file was not found, therefore the DTSWizard and SQLWatson app config files were not replaced
    2014-07-28 12:52:37 Slp: Completed Action: NotifyProgressComplete, returned True
    2014-07-28 12:52:37 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:37 Slp: Skipping Action: DeleteUninstalledPatchRegistryAndCacheFolderAction
    2014-07-28 12:52:37 Slp: Action is being skipped due to the following restrictions: 
    2014-07-28 12:52:37 Slp: Condition "Do any of the specified features match the expected scenario Uninstall" did not pass as it returned false and true was expected.
    2014-07-28 12:52:37 Slp: Completed Action: ExecuteExtendedTimingsWorkflow, returned True
    2014-07-28 12:52:37 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:37 Slp: Running Action: ExecuteCloseWorkflow
    2014-07-28 12:52:37 Slp: Workflow to execute: 'CLOSE'
    2014-07-28 12:52:37 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:37 Slp: Running Action: ProduceStatusLogs
    2014-07-28 12:52:39 Slp: Completed Action: ProduceStatusLogs, returned True
    2014-07-28 12:52:39 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:39 Slp: Running Action: FinalizeProgressStatus
    2014-07-28 12:52:39 Slp: Completed Action: FinalizeProgressStatus, returned True
    2014-07-28 12:52:39 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:39 Slp: Running Action: RebootMessageAction
    2014-07-28 12:52:39 Slp: Completed Action: RebootMessageAction, returned True
    2014-07-28 12:52:39 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:39 Slp: Skipping Action: FinishPage
    2014-07-28 12:52:39 Slp: Action is being skipped due to the following restrictions: 
    2014-07-28 12:52:39 Slp: Condition "Is the user's scenario set to EditionUpgrade" did not pass as it returned false and true was expected.
    2014-07-28 12:52:39 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:39 Slp: Running Action: CloseUI
    2014-07-28 12:52:39 Slp: Stop Action
    2014-07-28 12:52:39 Slp: Completed Action: CloseUI, returned True
    2014-07-28 12:52:39 Slp: Completed Action: ExecuteCloseWorkflow, returned True
    2014-07-28 12:52:39 Slp: Completed Action: ExecuteCompleteWorkflow, returned True
    2014-07-28 12:52:47 Slp: 
    2014-07-28 12:52:47 Slp: 
    2014-07-28 12:52:47 Slp: ----------------------------------------------------------------------
    2014-07-28 12:52:47 Slp: 
    2014-07-28 12:52:47 Slp: Error result: -2068119551
    2014-07-28 12:52:47 Slp: Result facility code: 1211
    2014-07-28 12:52:47 Slp: Result error code: 1
    2014-07-28 12:52:47 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine 
    2014-07-28 12:52:47 Slp: Sco: Attempting to open registry subkey 
    2014-07-28 12:52:47 Slp: Sco: Attempting to open registry subkey Software\Microsoft\PCHealth\ErrorReporting\DW\Installed
    2014-07-28 12:52:47 Slp: Sco: Attempting to get registry value DW0200
    2014-07-28 12:52:48 Slp: Submitted 1 of 1 failures to the Watson data repository
    can you help me? thanks,

    Hi,
    According to your description, we need to verify that if the setup file of SQL Server is corrupted, if it is corrupted, as Shanky’s post, please download it again and reinstall SQL Server 2008 R2 .
    However, if the setup file is complete, please check if there is an anti-virus software or other third-party software on your computer blocking the process of SQL Server installation. In addition, make sure that you configure SQL Server service accounts
    appropriately with administrator permission during the installation. For more details about this error, please review this similar thread:
    Install SQL 2008 R2 on Win 8 fails with Microsoft.SqlServer.Configuration.Sco.ScoException
    For more information about installing SQL Server 2008 R2,please review this blog:
    SQL Server 2008 R2 Sysprep Step by Step.
    Thanks,
    Lydia Zhang

  • Install SQL Server 2008 R2 in Windows Server 2012 using SQL4SAP Script

    Hi guys,
    Since we are performing a SAP System Migration from older releases of Windows/SQL Server, as detailed on SAP Note
    1780433 - System copy of SAP systems on Windows 2012 : SQL Server
    We need to install SQL Server 2008 R2 before upgrading the system
    When running SQL4SAP Script it states the following
    17/03/2014 08:13:44 p.m.
    Message Box "Windows version error"
    OS Family "WindowsNT6.3" is not supported by this script.
    Result: vbOK
    On Windows 2012 should i run the SETUP instead the script?
    Thanks!

    Hi Sunny
    Im following SAP Note 1780433 - System copy of SAP systems on Windows 2012 : SQL Server
    in order to migrate a SAP 640 system from Windows 2003/SQL Server 2005 to Windows 2012/ SQL Server 2012
    Reason and Prerequisites
    This note describes how to migrate the mentioned SAP products to Windows 2012/SQL Server 2008 R2,
    in order to prepare an upgrade to SAP releases based on NW 7.0 and higher.
    Note, that only SAP upgrade paths are supported, that are supported by the SUM tool. For more
    information about the upgrade paths supported by SUM, read the Central SUM Note referred to at
    http://www.service.sap.com/SLToolset.
    Immediately after the SAP upgrade, your database has to be upgraded to SQL Server 2012. SAP does in general not support SQL Server releases prior to SQL Server 2012 on Windows 2012.
    I understand this is not supported from Productive system, we are performing this on a Development system for test purposes.
    Nevertheless on the note says Install First SQL Server 2008 R2 and after SAP upgrade, perform upgrade of SQL Server Upgrade, so there is misleasing information.
    Im not sure if a 640 System would be able to copied and upgraded in Windows 2012/SQL Server 2012
    It doesnt mention that 640_EX2 Kernel Support SQL Server 2012 to install the system.
    How would yo recommend a system copy restoring database on these conditions?
    640 System (SQL Server 2005,Win 2003) --> 640 System (SQL Server 2012, Win 2012)
    (and then Upgrading to 740)
    Thanks

  • SQL 2008 R2 small business server OS edition check fails on SBS 2011 premium install on SBS member server.

    I am having trouble installing SQL 2008 Small Business Edition on top of MS 2008 std from the SBS premium suite. I recieve the SQL Server 2008 R2 setup log error stateing "Operating system supported for edition "Failed". The specific error is "EditionRequirementCheck
    Failed" This SQL server edition is not supported on this operating system.
    The SQL 2008 server is a valid SBS domain member server and sees the SBS domain just fine. I have tried re-installing the OS. Not selecting any options except the SQL engine, verbose logging as per How to diagnose "Operating system supported for edition"
    pre-requisite errors while installing SQL 2008 Standard Edition for Small Business with no success. (no log.txt generated), enabled browsing, and other items with no luck.
    I got the software from MVLS under the specific SBS 2011 premium section. It doesnt seem right or sees something to keep it from installing. The SBS AD box is clean with all FSMO and root functions assigned to it. There are no trust relationships or
    child domains. I have licenses for 75 users. Of course there is no tool, log or utility to find what the actual issue the SQL installation is seeing. SOS! Help!!!

    I meet all prerequisites that can be verified.
    I am installing it on the SBS Premium Server 2008 R2 OS from MVLS with the ISO file ending in 29732.
    I am on a valid SBS 2011 domain.
    The new SQL box is joined to the domain as a member server.
    THe SBS server contains alll FSMO roles and is the root of the AD.
    There are no trust relationships or child domains.
    There is NO way that I can find to determine the number of user and device licenses that it "senses" on the domain. I dont know which ones to count. I am licensed for 75 users and have less than that useing the network. There is no licensing monitor or meathod
    I can find to actually verify what the SQL install sees.
    I am doing all this logged in as the domain admin.
    The troubleshooting steps at the bottom of the post refrenced do not work or I am doing them wrong. I cannot find an output file when I enable verbose logging for the SQL install. I believe if I figure out how it may point the way to the block. Thanks

  • Is it possible to install Microsoft SQL Server 2008 Express on windows server 2012 (not R2) ?

    I read this kb - http://support.microsoft.com/kb/2681562/en-us, but doesn't get exact answer.
    I need to install vWorkspace 8 on server w2k12. It install SQL Server 2008 Express during installation and I got error.
    So, is it possible to install Microsoft SQL Server 2008 (R2) Express on windows server 2012 (not R2) ?

    I read this kb - http://support.microsoft.com/kb/2681562/en-us, but doesn't get exact answer.
    I need to install vWorkspace 8 on server w2k12. It install SQL Server 2008 Express during installation and I got error.
    So, is it possible to install Microsoft SQL Server 2008 (R2) Express on windows server 2012 (not R2) ?
    Yes you can install SQL server 2008 express on windows 2012 OS see below link
    http://msdn.microsoft.com/en-us/library/ms143506(v=sql.100).aspx#Express32
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Unable to Connect to SQL 2000 Instance from Windows Server 2012 environment

    We have a windows server (TEST) 2012 environment , where our test SQL Server 2012 instance is hosted.
    We have a different (DEV) Server (windows 2000)  where a SQL Server 2000 instance is present.
    When I RDP to our Windows Server 2012 box, I cannot connect to the SQL 2000 server instance from SQL Management Studio. (whereas I can connect to
    the same server from my local machine which has windows 7 and SQL 2012 installed). 
    This is the error i see - 
    "A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name
    is no longer available.) (.Net SqlClient Data Provider)"
    When run from SQL Agent Service from TEST (A Job which tries to connect to that SQL 2000 instance to read some data using SSIS) , we get the following
    error - 
    An OLE DB record is available.  Source: "Microsoft OLE DB Provider for SQL Server"  Hresult: 0x80004005  Description: "[DBNETLIB][ConnectionRead
    (recv()).]General network error. Check your network documentation.".
    The same SSIS package runs successfully from my local machine.
    Please, could someone advice how to resolve this situation?

    Thanks Olaf.
    Its just that we have legacy systems here in our company, who, for some reason haven't upgraded their older infrastructure, whereas they have set up new Windows 2012/SQL 2012 environments for the newer sql instances where they want to transition to !
    Not sure what the solution is honestly. It is affecting our timelines now. The infrastructure team needs to take a decision now, as to what to do.
    I do have to add, we were able to connect to these "older" servers from our Windows 7 client machines which have SQL 2012 - both from SQL management studio & SSIS (using OLE-DB Provider for SQL Server).

  • I can't restore my Ipad and keep getting NAND messages running along the type left of the screen

    I can't restore my Ipad mini.....it begins the process and then stops midway through and shows NAND messages along the top left of the screen. Then all I get is either a blank screen or Apple logo......unable to turn it on or off.

    Recovery Mode:
    1. Turn off iPad
    2. Connect USB cable to computer; leave the other end alone
    3. Press and hold the Home button down and connect the docking end of cable to iPad
    4. Continue holding the Home button until you see the "Connect To iTune" screen
    5. Release the Home button
    6. Open iTune
    7. You should see "iTunes has detected an iPad in recovery mode"
    8. Use iTune to restore iPad
    Note: You need to be patient and repeat the above many times to recover your iPad

  • Domain computers can't runt RD Web applications when connected from outside company – Windows server 2012 R2

    Hi Everyone,
    I have a question related to RDweb service.
    I have successfully installed RD web role on windows server 2012 R2.
    All went ok. I also installed a valid third party certificate.
    I can connect from outside to the server and run applications using any devices: Ipad’s, mobiles and laptops.
    The problem is that: Any Computer/Laptop that is joined on the domain can connect to RDWEB from outside the company BUT CAN'T RUN ANY APPLICATIONS. The RD session is taking long time it failes.
    Note that from inside the network is working.
    What it can be?
    Thank you in advance,
    Criss

    Hi,
    The internet connection from where I’m doing the tests is quite good. I think the error with the latency is not relevant because probably the computerRD gateway it doesn’t allow it and that way it fails with this error. For a computer that never been joined
    on the domain is working perfect no delay at all..
    We are using RD Gateway … installed everything on the same machine Windows server 2012 R2.
    When I click RemoteApp I see the remote the prompt of RD gateway, I click ok, then nothing happened for 2-3 min. after this time it brings the error with the delay.. OR “couldn’t connect on the remote computer because an error occurred on the remote
    computer that you want to connect to.”
    Again, the connection is failing ONLY when we try to connect from outside the company and it happened ONLY with the Computers that are joined on the Domain.
    EX: An user (with Office Laptop - joined on domain) can connect to RD Gateway and lunch the RemoteApp’s from inside LAN but when is leaving Home can’t run the Remote App;s. In the meantime he can connect and run RemoteApp’s with his private computer.
    What it can be different between the Office and his home private computer?
    For Outside users we’ve have open only port 443 on firewall. Why need to open UPD 3391?
    I’ve notice that if I take a laptop that is working and join it on the domain it will have the same issue. If will dis-join it will still have the same issue after all.
    Thank You

  • Can't get SQL 2008 Express installed

    Hope some one can help me. I am trying to install 2008 Express version and I constantly get the following error. I have tried pretty much all flavors of express and get the same thing. I uninstalled several time and reinstall but keep getting the same exception error. Can someone help me out. Here is the error:
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    ************** Exception Text **************
    System.Configuration.ConfigurationErrorsException: An error occurred creating the configuration section handler for userSettings/Microsoft.SqlServer.Configuration.LandingPage.Properties.Settings: Could not load file or assembly 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified. (C:\Documents and Settings\Jocelyn\Local Settings\Application Data\Microsoft_Corporation\LandingPage.exe_StrongName_ryspccglaxmt4nhllj5z3thycltsvyyx\10.0.0.0\user.config line 5) ---> System.IO.FileNotFoundException: Could not load file or assembly 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.
    File name: 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
       at System.Configuration.TypeUtil.GetTypeWithReflectionPermission(IInternalConfigHost host, String typeString, Boolean throwOnError)
       at System.Configuration.RuntimeConfigurationRecord.RuntimeConfigurationFactory.Init(RuntimeConfigurationRecord configRecord, FactoryRecord factoryRecord)
       at System.Configuration.RuntimeConfigurationRecord.RuntimeConfigurationFactory.InitWithRestrictedPermissions(RuntimeConfigurationRecord configRecord, FactoryRecord factoryRecord)
       at System.Configuration.RuntimeConfigurationRecord.RuntimeConfigurationFactory..ctor(RuntimeConfigurationRecord configRecord, FactoryRecord factoryRecord)
       at System.Configuration.RuntimeConfigurationRecord.CreateSectionFactory(FactoryRecord factoryRecord)
       at System.Configuration.BaseConfigurationRecord.FindAndEnsureFactoryRecord(String configKey, Boolean& isRootDeclaredHere)
    WRN: Assembly binding logging is turned OFF.
    To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
    Note: There is some performance penalty associated with assembly bind failure logging.
    To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].
       --- End of inner exception stack trace ---
       at System.Configuration.BaseConfigurationRecord.FindAndEnsureFactoryRecord(String configKey, Boolean& isRootDeclaredHere)
       at System.Configuration.BaseConfigurationRecord.GetSectionRecursive(String configKey, Boolean getLkg, Boolean checkPermission, Boolean getRuntimeObject, Boolean requestIsHere, Object& result, Object& resultRuntimeObject)
       at System.Configuration.BaseConfigurationRecord.GetSection(String configKey, Boolean getLkg, Boolean checkPermission)
       at System.Configuration.BaseConfigurationRecord.GetSection(String configKey)
       at System.Configuration.ClientConfigurationSystem.System.Configuration.Internal.IInternalConfigSystem.GetSection(String sectionName)
       at System.Configuration.ConfigurationManager.GetSection(String sectionName)
       at System.Configuration.ClientSettingsStore.ReadSettings(String sectionName, Boolean isUserScoped)
       at System.Configuration.LocalFileSettingsProvider.GetPropertyValues(SettingsContext context, SettingsPropertyCollection properties)
       at System.Configuration.SettingsBase.GetPropertiesFromProvider(SettingsProvider provider)
       at System.Configuration.SettingsBase.GetPropertyValueByName(String propertyName)
       at System.Configuration.SettingsBase.get_Item(String propertyName)
       at System.Configuration.ApplicationSettingsBase.GetPropertyValue(String propertyName)
       at System.Configuration.ApplicationSettingsBase.get_Item(String propertyName)
       at Microsoft.SqlServer.Configuration.LandingPage.Properties.Settings.get_WindowPlacement()
       at Microsoft.SqlServer.Configuration.LandingPage.LandingPageForm.OnLoad(EventArgs e)
       at System.Windows.Forms.Form.OnCreateControl()
       at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
       at System.Windows.Forms.Control.CreateControl()
       at System.Windows.Forms.Control.WmShowWindow(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.ContainerControl.WndProc(Message& m)
       at System.Windows.Forms.Form.WmShowWindow(Message& m)
       at System.Windows.Forms.Form.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    ************** Loaded Assemblies **************
    mscorlib
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3603 (GDR.050727-3600)
        CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    LandingPage
        Assembly Version: 10.0.0.0
        Win32 Version: 10.0.2531.0 ((Katmai_PCU_Main).090329-1015 )
        CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/100/Setup%20Bootstrap/Release/x86/LandingPage.exe
    System.Windows.Forms
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    System.Drawing
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    Microsoft.SqlServer.Configuration.Sco
        Assembly Version: 10.0.0.0
        Win32 Version: 10.0.2531.0 ((Katmai_PCU_Main).090329-1015 )
        CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/100/Setup%20Bootstrap/Release/x86/Microsoft.SqlServer.Configuration.Sco.DLL
    System.Xml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3082 (QFE.050727-3000)
        CodeBase: file:///C:/windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    Accessibility
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/windows/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
    Microsoft.SqlServer.Management.Controls
        Assembly Version: 10.0.0.0
        Win32 Version: 10.0.2531.0 ((Katmai_PCU_Main).090329-1015 )
        CodeBase: file:///C:/Program%20Files/Microsoft%20SQL%20Server/100/Setup%20Bootstrap/Release/x86/Microsoft.SqlServer.Management.Controls.DLL
    System.Configuration
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    Thanks,
    Jocs

    Dear Charles!
    Am trying to install SQL Server 2008 on Windows server 2008 R2 for the last five days but getting errors continuously like:
    1. SQL Server Setup has encountered the following error:
    Invoke or BeginInvoke cannot be called on a control until the window handle has been created..
    2.
    MicroSoft Net framework: unhandled exception occurred in your application. 
    An error occurred creating the configuration section handler for userSettings/Microsoft.SqlServer.Configuration.LandingPage.Properties.Settings: Could not load file or
    assembly ‘System, Version=4.0.0.0, ............
    As you suggested
    I tried to install 
    Microsoft .Net Framework 3.5 SP1 but it doesnt run on it, then I installed 
    Microsoft .Net Framework 4.0.30319.1 it is installed on it.
    Then I installed
    Windows Installer 4.5 too
    But my problem is not solved, kindly help me asap.
    Ques: I am a user as “administrator” in the system, is it enough or have I to log in as a main administrator of the system.

  • Help - SQL 2008 - SP4 Install Fails - Server is in script upgrade mode - Server Down

    Login failed for user 'CS\XXXXXXXXXXX'. Reason: Server is in script upgrade mode. Only administrator can connect at this time. [CLIENT: <local machine>]
    Clearing tempdb database.
    Bits:
    Windows 2003 Server Std SP2
    SQL Server 2008 SP3
    SQL Server has been running without issue.  Installed on another SS2K8 SP3 and worked fine.
    Any assistance would be appreciated as this issue is causing problems for my user applications.
    Thank You
    Mark Covian

    Set Trace Flag -T902
    Start the SQL Server and it shuts down
    2015-01-28 09:41:00.00 Server Microsoft SQL Server 2008 (SP4) - 10.0.6000.29 (Intel X86)
    Sep 2 2014 22:55:13
    Copyright (c) 1988-2008 Microsoft Corporation
    Standard Edition on Windows NT 5.2 <X86> (Build : )
    2015-01-28 09:41:00.00 Server (c) 2005 Microsoft Corporation.
    2015-01-28 09:41:00.00 Server All rights reserved.
    2015-01-28 09:41:00.00 Server Server process ID is 6564.
    2015-01-28 09:41:00.00 Server Authentication mode is MIXED.
    2015-01-28 09:41:00.00 Server Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Log\ERRORLOG'.
    2015-01-28 09:41:00.00 Server This instance of SQL Server last reported using a process ID of 7580 at 1/28/2015 9:32:48 AM (local) 1/28/2015 4:32:48 PM (UTC). This is an informational message only; no user action is required.
    2015-01-28 09:41:00.00 Server Registry startup parameters:
    -d C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\master.mdf
    -e C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Log\ERRORLOG
    -l C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\mastlog.ldf
    -T902
    The ALL permission is deprecated and maintained only for compatibility. It DOES NOT imply ALL permissions defined on the entity.
    Adding user 'CS\X910401' to SQLAgentUserRole msdb role...
    Performing replication job security meta-data upgrades...
    Attempting to load library 'xprepl.dll' into memory. This is an informational message only. No user action is required.
    Using 'xprepl.dll' version '2007.100.1600' to execute extended stored procedure 'xp_repl_encrypt'. This is an informational message only; no user action is required.
    Error: 515, Severity: 16, State: 2.
    Cannot insert the value NULL into column 'owner_sid', table 'msdb.dbo.sysjobs'; column does not allow nulls. INSERT fails.
    Error: 912, Severity: 21, State: 2.
    Script level upgrade for database 'master' failed because upgrade step 'sqlagent100_msdb_upgrade.sql' encountered error 515, state 2, severity 16. This is a serious error condition which might interfere with regular operation and the database will be taken offline. If the error happened during upgrade of the 'master' database, it will prevent the entire SQL Server instance from starting. Examine the previous errorlog entries for errors, take the appropriate corrective actions and re-start the database so that the script upgrade steps run to completion.
    Error: 3417, Severity: 21, State: 3.
    Cannot recover the master database. SQL Server is unable to run. Restore master from a full backup, repair it, or rebuild it. For more information about how to rebuild the master database, see SQL Server Books Online.
    SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
    The SQL Server Network Interface library successfully deregistered the Service Principal Name (SPN) [ MSSQLSvc/ ] for the SQL Server service.
    The SQL Server Network Interface library successfully deregistered the Service Principal Name (SPN) [ MSSQLSvc/R:1433 ] for the SQL Server service.
    Mark Covian

  • NPS SQL missing reason-code in Server 2012 R2

    Hi
    It seems like several SQL fields in the 2012 R2 version of NPS logging has been removed.
    Amongst others the Reason-Code field.
    Most people only refer to log files to see why someone can't connect to the vpn server.
    In previous versions we had a web front end for an sql view that gave you the reason why the server denied access so that we do not need to give helpdesk personnel access to the log files and we also filter which operations vpn sessions they can see (via
    multiple vpn nps policies and then filter the sql view based on their permissions).
    Is there any way to restore the logging of this field to SQL as well as logging the source IP address of the request (our investors requires this and we get audited on it) with the issued IP (non DHCP). We are not allowed to run DHCP on this server since
    it is situated in the 3rd party datacenter.
    Regards
    Johan

    And this is what Server 2008R2 had parsed in the default stored procedure:
    FROM
    OPENXML(@idoc,
    '/Event')
    WITH
        Computer_Name
    nvarchar(255)
    './Computer-Name',
        Packet_Type
    int
    './Packet-Type',
        [User_Name]
    nvarchar(255)
    './User-Name',
        F_Q_User_Name
    nvarchar(255)
    './Fully-Qualifed-User-Name',
        Called_Station_Id
    nvarchar(255)
    './Called-Station-Id',
        Calling_Station_Id
    nvarchar(255)
    './Calling-Station-Id',
        Callback_Number
    nvarchar(255)
    './Callback-Number',
        Framed_IP_Address
    nvarchar(15)
    './Framed-IP-Address',
        NAS_Identifier
    nvarchar(255)
    './NAS-Identifier',
        NAS_IP_Address
    nvarchar(15)
    './NAS-IP-Address',
        NAS_Port
    int
    './NAS-Port',
        Client_Vendor
    int
    './Client-Vendor',
        Client_IP_Address
    nvarchar(15)
    './Client-IP-Address',
        Client_Friendly_Name
    nvarchar(255)
    './Client-Friendly-Name',
        Event_Timestamp
    datetime
    './Event-Timestamp',
        Port_Limit
    int
    './Port-Limit',
        NAS_Port_Type
    int
    './NAS-Port-Type',
        Connect_Info
    nvarchar(255)
    './Connect-Info',
        Framed_Protocol
    int
    './Framed-Protocol',
        Service_Type
    int
    './Service-Type',
        Authentication_Type
    int
    './Authentication-Type',
        NP_Policy_Name
    nvarchar(255)
    './NP-Policy-Name',
        Reason_Code
    int
    './Reason-Code',
        Class
    nvarchar(255)
    './Class',
    Session_Timeout
    int
    './Session-Timeout',
        Idle_Timeout
    int
    './Idle-Timeout',
        Termination_Action
    int
    './Termination-Action',
        EAP_Friendly_Name
    nvarchar(255)
    './EAP-Friendly-Name',
        Acct_Status_Type
    int
    './Acct-Status-Type',
        Acct_Delay_Time
    int
    './Acct-Delay-Time',
        Acct_Input_Octets
    int
    './Acct-Input-Octets',
        Acct_Output_Octets
    int
    './Acct-Output-Octets',
        Acct_Session_Id
    nvarchar(255)
    './Acct-Session-Id',
        Acct_Authentic
    int
    './Acct-Authentic',
        Acct_Session_Time
    int
    './Acct-Session-Time',
        Acct_Input_Packets
    int
    './Acct-Input-Packets',
        Acct_Output_Packets
    int
    './Acct-Output-Packets',
        Acct_Terminate_Cause
    int
    './Acct-Terminate-Cause',
        Acct_Multi_Session_Id
    nvarchar(255)
    './Acct-Multi-Session-Id',
        Acct_Link_Count
    int
    './Acct-Link-Count',
        Acct_Interim_Interval
    int
    './Acct-Interim-Interval',
        Tunnel_Type
    int
    './Tunnel-Type',
        Tunnel_Medium_Type
    int
    './Tunnel-Medium-Type',
        Tunnel_Client_Endpoint
    nvarchar(255)
    './Tunnel-Client-Endpt',
        Tunnel_Server_Endpoint
    nvarchar(255)
    './Tunnel-Server-Endpt',
        Acct_Tunnel_Connection
    nvarchar(255)
    './Acct-Tunnel-Connection',
        Tunnel_Pvt_Group_Id
    nvarchar(255)
    './Tunnel-Pvt-Group-Id',
        Tunnel_Assignment_Id
    nvarchar(255)
    './Tunnel-Assignment-Id',
        Tunnel_Preference
    int
    './Tunnel-Preference',
        MS_Acct_Auth_Type
    int
    './MS-Acct-Auth-Type',
        MS_Acct_EAP_Type
    int
    './MS-Acct-EAP-Type',
        MS_RAS_Version
    nvarchar(255)
    './MS-RAS-Version',
        MS_RAS_Vendor
    int
    './MS-RAS-Vendor',
        MS_CHAP_Error
    nvarchar(255)
    './MS-CHAP-Error',
        MS_CHAP_Domain
    nvarchar(255)
    './MS-CHAP-Domain',
    MS_MPPE_Encryption_Types
    int
    './MS-MPPE-Encryption-Types',
    MS_MPPE_Encryption_Policy
    int
    './MS-MPPE-Encryption-Policy',
        Proxy_Policy_Name
    nvarchar(255)
    './Proxy-Policy-Name',
        Provider_Type
    int
    './Provider-Type',
        Provider_Name
    nvarchar(255)
    './Provider-Name',
        Remote_Server_Address
    nvarchar(15)
    './Remote-Server-Address',
        MS_RAS_Client_Name
    nvarchar(255)
    './MS-RAS-Client-Name',
        MS_RAS_Client_Version
    nvarchar(255)
    './MS-RAS-Client-Version',
        NAP-specific information, available from NPS starting with Windows Server 2008.

Maybe you are looking for

  • Payments in foreign currency

    hi when payments made for foreign currency transactions, what postings are made to balnce sheet adjustment account for foreign vendor? how is this account adjusted after payment is made so that true reflection of vendors can be reported. tx

  • Device won't synchronize -- but will backup

    "Unknown Error" is cited whenever I attempt to do synchronization.  (Backup seems to work, however).  How can I fix this? How can I locate Live Tech Support?  This is very frustrating -- having the problem and not having direct tech support. rhol Sol

  • Does anyone know what a DNS relay 10.0.1.1 is?

    My console shows this message alot: b-cs-ibook-g4 mDNSResponder: NOTE: Wide-Area Service Discovery disabled to avoid crashing defective DNS relay 10.0.1.1. What is a DNS relay? I've been having start up problems with 10.4.5 since I updated from 10.4.

  • HT201343 why there is no sound in airplay mode from macbook?

    why there is no sound in airplay mode from macbook?

  • Muse: deux installations de Muse CC 2014 ???

    Bonjour, Je ne suis pas utilisateur de Muse pour le moment mais j'ai installé la version 2014 en attendant de pouvoir m'y intéresser. Je voulais simplement savoir si d'autres membres ont eu le même petit "problème" que celui décrit ci-dessous. Alors