Sql 2012 integration services settings grayed out

Our DBAs are trying to change some settings for integration services by following this article:
https://msdn.microsoft.com/en-us/library/aa337083.aspx?f=255&MSPPError=-2147217396
however everything on the properties window is grayed out. I have the same issue despite being a local admin on this server. 
Are there any other settings I need to change to gain access to this? I can change all other settings under dcom config 

Hi vanquish12,
Please make sure that you right click on “Component Services” and select "Run as Administrator" to start up “Component Services”.
However, if the integration services settings are still grayed out, the issue could be due to permission restrictions on your system. Please perform the following steps to solve this issue.
1. Right-click on SQL Server Integration Services 11.0 and select Properties in Component Services/Computers/My computer/DCOM Config. In the General tab, record the Application ID of SQL Server Integration Services 11.0.
2. Start the registry editor (regedit), find the following key, then right click it and select Permissions, add your account in the Permissions dialog and grant full control rights to your account.
HKEY_CLASSES_ROOT\AppID\{ Application ID of step 1}
3. Check that if integration services settings are enabled in Component Services.
For more details, please review the following link.
http://www.wictorwilen.se/Post/Fix-the-SharePoint-DCOM-10016-error-on-Windows-Server-2008-R2.aspx
Thanks,
Lydia Zhang
Lydia Zhang
TechNet Community Support

Similar Messages

  • Virtual Lab: Exploring SQL Server 2012 Integration Services - Setup script fails

    I am trying to work through a Lab, but cannot get past the Setup script stage.
    The lab is "Exploring SQL Server 2012 Integration Services". I have tried this several times (with new lab instances) and the result is always the same.
    I double click the Setup command ... Press 2 ... when the popup dialog appears I press Ok ... the progress bar completes and the messages in the text box seem to indicate everything has completed (last line says "Done"). I click Close as per the
    instructions and then the script moves to the "Configure SQL Server" stage.
    After a short delay a number of error messages appear: "Could not open a connection ... Login / timeout expired" etc - basically it can't find or can't connect to the server.
    I expected these labs to work seamlessly  :)
    Anyone know what's going wrong here?
    Thanks,
    Larry

    I am moving it to SSIS.
    Kalman Toth Database & OLAP Architect
    SELECT Video Tutorials 4 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • [Forum FAQ] How do I send multiple rows returned by Execute SQL Task as Email content in SQL Server Integration Services?

    Question:
    There is a scenario that users want to send multiple rows returned by Execute SQL Task as Email content to send to someone. With Execute SQL Task, the Full result set is used when the query returns multiple rows, it must map to a variable of the Object data
    type, then the return result is a rowset object, so we cannot directly send the result variable as Email content. Is there a way that we can extract the table row values that are stored in the Object variable as Email content to send to someone?
    Answer:
    To achieve this requirement, we can use a Foreach Loop container to extract the table row values that are stored in the Object variable into package variables, then use a Script Task to write the data stored in packages variables to a variable, and then set
    the variable as MessageSource in the Send Mail Task. 
    Add four variables in the package as below:
    Double-click the Execute SQL Task to open the Execute SQL Task Editor, then change the ResultSet property to “Full result set”. Assuming that the SQL Statement like below:
    SELECT   Category, CntRecords
    FROM         [table_name]
    In the Result Set pane, add a result like below (please note that we must use 0 as the result set name when the result set type is Full result set):
    Drag a Foreach Loop Container connects to the Execute SQL Task. 
    Double-click the Foreach Loop Container to open the Foreach Loop Editor, in the Collection tab, change the Enumerator to Foreach ADO Enumerator, then select User:result as ADO object source variable.
    Click the Variable Mappings pane, add two Variables as below:
    Drag a Script Task within the Foreach Loop Container.
    The C# code that can be used only in SSIS 2008 and above in Script Task as below:
    public void Main()
       // TODO: Add your code here
                Variables varCollection = null;
                string message = string.Empty;
                Dts.VariableDispenser.LockForWrite("User::Message");
                Dts.VariableDispenser.LockForWrite("User::Category");
                Dts.VariableDispenser.LockForWrite("User::CntRecords");     
                Dts.VariableDispenser.GetVariables(ref varCollection);
                //Format the query result with tab delimiters
                message = string.Format("{0}\t{1}\n",
                                            varCollection["User::Category"].Value,
                                            varCollection["User::CntRecords"].Value
               varCollection["User::Message"].Value = varCollection["User::Message"].Value + message;   
               Dts.TaskResult = (int)ScriptResults.Success;
    The VB code that can be used only in SSIS 2005 and above in Script Task as below, please note that in SSIS 2005, we should
    change PrecompileScriptIntoBinaryCode property to False and Run64BitRuntime property to False
    Public Sub Main()
            ' Add your code here
            Dim varCollection As Variables = Nothing
            Dim message As String = String.Empty
            Dts.VariableDispenser.LockForWrite("User::Message")
            Dts.VariableDispenser.LockForWrite("User::Category")
            Dts.VariableDispenser.LockForWrite("User::CntRecords")
            Dts.VariableDispenser.GetVariables(varCollection)
            'Format the query result with tab delimiters
            message = String.Format("{0}" & vbTab & "{1}" & vbLf, varCollection("User::Category").Value, varCollection("User::CntRecords").Value)
            varCollection("User::Message").Value = DirectCast(varCollection("User::Message").Value,String) + message
            Dts.TaskResult = ScriptResults.Success
    End Sub
    Drag Send Mail Task to Control Flow pane and connect it to Foreach Loop Container.
    Double-click the Send Mail Task to specify the appropriate settings, then in the Expressions tab, use the Message variable as the MessageSource Property as below:
    The final design surface like below:
    References:
    Result Sets in the Execute SQL Task
    Applies to:
    Integration Services 2005
    Integration Services 2008
    Integration Services 2008 R2
    Integration Services 2012
    Integration Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • SQL 2012 enterprise service pack 2 fails to install

    Hi,
    I have installed SQL 2012 sp2 x64 onto the main service manager 2012 database, but it fails on the datawarehouse SQL server. Both are going from SP1 to SP2. Servers are running windows server 2012 sp1 x64.
    On the datawarehouse server it gets so far and then just displays a message of completed, with all the other fields blank.
    The text file for the Summary of the installation has been copied below:
    Overall summary:
      Final result:                  The patch installer has failed to update the following instance: MSSQLSERVER. To determine the reason for failure, review the log files.
      Exit code (Decimal):           -2068709375
      Start time:                    2015-01-09 13:55:32
      End time:                      2015-01-09 14:04:09
      Requested action:              Patch
    Instance MSSQLSERVER overall summary:
      Final result:                  The patch installer has failed to update the shared features. To determine the reason for failure, review the log files.
      Exit code (Decimal):           -2068709375
      Exit facility code:            1202
      Exit error code:               1
      Exit message:                  The NT service 'MSSQLServerOLAPService' could not be stopped.
      Start time:                    2015-01-09 14:00:18
      End time:                      2015-01-09 14:04:01
      Requested action:              Patch
      Exception help link:          
    http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.5058.0&EvtType=0xAC454CB1%400xF762992B%401202%401&EvtType=0xAC454CB1%400xF762992B%401202%401
    Machine Properties:
      Machine name:                  SCSDWM01
      Machine processor count:       4
      OS version:                    Future Windows Version
      OS service pack:              
      OS region:                     United Kingdom
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                   
    Feature                                  Language            
    Edition              Version         Clustered  Configured
      SQL Server 2012      MSSQLSERVER          MSSQL11.MSSQLSERVER            Database Engine Services                
    1033                 Enterprise Edition   11.1.3153.0     No         Yes      
      SQL Server 2012      MSSQLSERVER          MSSQL11.MSSQLSERVER            Full-Text and Semantic Extractions for Search 1033                
    Enterprise Edition   11.1.3000.0     No         Yes      
      SQL Server 2012      MSSQLSERVER          MSAS11.MSSQLSERVER             Analysis Services                       
    1033                 Enterprise Edition   11.1.3130.0     No         Yes      
      SQL Server 2012      MSSQLSERVER          MSRS11.MSSQLSERVER             Reporting Services - Native             
    1033                 Enterprise Edition   11.1.3153.0     No         Yes      
      SQL Server 2012                                                         
    Management Tools - Basic                 1033                 Enterprise Edition   11.1.3153.0    
    No         Yes      
      SQL Server 2012                                                         
    Management Tools - Complete              1033                 Enterprise Edition   11.1.3130.0    
    No         Yes      
      SQL Server 2012                                                         
    SQL Server Data Tools - Business Intelligence for Visual Studio 2012 1033                                     
    11.1.3402.0     No         Yes      
      SQL Server 2012                                                         
    Integration Services                     1033                 Enterprise Edition  
    11.1.3153.0     No         Yes      
    Package properties:
      Description:                   Microsoft SQL Server 2012
      ProductName:                   SQL Server 2012
      Type:                          RTM
      Version:                       11
      SPLevel:                       2
      KBArticle:                     KB2958429
      KBArticleHyperlink:           
    http://support.microsoft.com/?kbid=2958429
      PatchType:                     SP
      AssociatedHotfixBuild:         0
      Platform:                      x64
      PatchLevel:                    11.2.5058.0
      ProductVersion:                11.0.2100.60
      GDRReservedRange:              11.0.5300.0:11.0.5499.0
      PackageName:                   SQLServer2012-KB2958429-x64.exe
      Installation location:         c:\ce370c3d01e3ec4095540d8578cc7e\x64\setup\
    Updated product edition:
      Instance             Edition            
      MSSQLSERVER          Enterprise         
    User Input Settings:
      ACTION:                        Patch
      ALLINSTANCES:                  false
      CLUSTERPASSIVE:                false
      CONFIGURATIONFILE:            
      ENU:                           false
      HELP:                          false
      IACCEPTSQLSERVERLICENSETERMS:  true
      INDICATEPROGRESS:              false
      INSTANCEID:                    <empty>
      INSTANCENAME:                  <empty>
      QUIET:                         false
      QUIETSIMPLE:                   false
      SQMREPORTING:                  false
      UIMODE:                        Normal
      X86:                           false
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report file:               C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20150109_135509\SystemConfigurationCheck_Report.htm
    Any ideas on why this has happened and how to fix the error?
    Thanks.
    Jaz

    Hello,
    Open the errorlog file on the following path C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Log. There
    you will find a more descriptive error.
    I received that error before. The workaround I used is contained on the following article:
    http://www.sqlcoffee.com/Troubleshooting112.htm
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • HT5569 Tried this but still not working and unable to load Itunes iOS: Wi-Fi settings grayed out or dim Symptoms  In rare instances, the setting to turn on Wi-Fi on your iPhone, iPad, or iPod touch may appear grayed out or dim. You may see the following w

    Tried the below and still no good - any suggestions
    iOS: Wi-Fi settings grayed out or dim
    Symptoms
    In rare instances, the setting to turn on Wi-Fi on your iPhone, iPad, or iPod touch may appear grayed out or dim. You may see the following when you tap Settings > Wi-Fi.
    If this occurs, you can't turn Wi-Fi on, and when you try to turn Wi-Fi on, your device won't respond. If you're using iOS 7, Wi-Fi may appear to turn on and off in Control Center, but Wi-Fi won't respond.
    Resolution
    Follow these steps to resolve the issue:
    Restart your iOS device.
    Make sure that airplane mode is off by tapping Settings > Airplane Mode.
    Reset the network settings by tapping Settings > General > Reset > Reset Network Settings.
    This will reset all network settings, including Bluetooth pairing records, Wi-Fi passwords, VPN, and APN settings.
    Make sure that your device is using the latest software. To do so, connect your device to your computer and check for updates in iTunes.
    If you still can't turn Wi-Fi on, please contact Apple for support and service options. If you can turn Wi-Fi on but are experiencing other issues with Wi-Fi, please see these steps.
    Last Modified: Dec 9, 2013

    Your device has a hardware failure and only replacement or repair will fix it.  Take it to an Apple Store or an Apple authorized service provider.

  • SQL 2012 Reporting Services hang

    Hello,
    we are using SQL 2012 Reporting Services with Dynamics CRM Reports. Since a few wekkes every other day it looks like my Reproitng services do fail. CRM Reports do not work and  If I try to browse https://sql2012.mobilex.intra/Reports/Pages/Folder.aspx
    I get the login prompt but than it only shows "Could not find file 'C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp\vsuzsax3.dll'." while the dll is always a different one. It looks like whole path C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp
    is not available at that moment. If I than restart my SQL Reporting Services service everything starts working again for one or two days...
    Any idea where I can start debugging this issue?
    kind regards,
    Dieter Tontsch, mobileX AG

    Hello Vicky, thanks for your reply,
    see attached a log-file snippet while it just occurs again. It might be a file permission issue. I will do the changes suggested by you once I am back to the office. It is true that yet the Reporting Service runs under Network Service account. Some questions:
    - you suggested to change SQL Service Logon, do you realy mean SQL service itself, or just Reporting services? Should I change all SQL services logon credentials to the same account?
    - second you said "Provide full access to the "\Documents and Settings\NetworkService\Local Settings\Temp" for any account that needs to access the report server.". I am not sure which path is meant with "\Documents and Settings\NetworkService\Local
    Settings\Temp" since there is no Documents and settings, this is users now. But I guess this is not the place you mean since there is no profile for NetworkService in there.
    But one more thin, this temporary file the server complains about like in this case 'C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp\uiy82bjf.dll' is not existing at this point. I don't know if this is relevant, but it looks to me like it looks
    for a temporary file which is already gone by some reason. So, it is not the problem that the file cannot be accessed, but it is not there or not there any more, I don't know. Fact is that immediately after a Reporting Service restart, with no changes made,
    the Services work again for a while. 
    Dieter
    ui!ReportManager_0-4!115c!04/30/2015-08:00:43:: e ERROR: System.IO.FileNotFoundException: Could not find file 'C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp\uiy82bjf.dll'.
    File name: 'C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp\uiy82bjf.dll'
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at Microsoft.CSharp.CSharpCodeGenerator.FromFileBatch(CompilerParameters options, String[] fileNames)
       at Microsoft.CSharp.CSharpCodeGenerator.FromSourceBatch(CompilerParameters options, String[] sources)
       at Microsoft.CSharp.CSharpCodeGenerator.System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(CompilerParameters options, String[] sources)
       at System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromSource(CompilerParameters options, String[] sources)
       at System.Xml.Serialization.Compiler.Compile(Assembly parent, String ns, XmlSerializerCompilerParameters xmlParameters, Evidence evidence)
       at System.Xml.Serialization.TempAssembly.GenerateAssembly(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, Evidence evidence, XmlSerializerCompilerParameters parameters, Assembly assembly, Hashtable assemblies)
       at System.Xml.Serialization.TempAssembly..ctor(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, String location, Evidence evidence)
       at System.Xml.Serialization.XmlSerializer.GetSerializersFromCache(XmlMapping[] mappings, Type type)
       at System.Xml.Serialization.XmlSerializer.FromMappings(XmlMapping[] mappings, Type type)
       at System.Web.Services.Protocols.SoapClientType..ctor(Type type)
       at System.Web.Services.Protocols.SoapHttpClientProtocol..ctor()
       at Microsoft.SqlServer.ReportingServices2010.ReportingService2010..ctor()
       at Microsoft.SqlServer.ReportingServices2010.RSConnection2010..ctor(String reportServerUrl, Boolean useSharePointProxy)
       at Microsoft.ReportingServices.UI.Global.get_ReportServer()
       at Microsoft.ReportingServices.UI.Global.SecureAllAPI()
       at Microsoft.ReportingServices.UI.ReportingPage.EnsureHttpsLevel()
       at Microsoft.ReportingServices.UI.ReportingPage.ReportingPage_Init(Object sender, EventArgs args)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Page.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    ui!ReportManager_0-4!115c!04/30/2015-08:00:43:: e ERROR: System.IO.FileNotFoundException: Could not find file 'C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp\_dww3cf5.dll'.
    File name: 'C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp\_dww3cf5.dll'
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at Microsoft.CSharp.CSharpCodeGenerator.FromFileBatch(CompilerParameters options, String[] fileNames)
       at Microsoft.CSharp.CSharpCodeGenerator.FromSourceBatch(CompilerParameters options, String[] sources)
       at Microsoft.CSharp.CSharpCodeGenerator.System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(CompilerParameters options, String[] sources)
       at System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromSource(CompilerParameters options, String[] sources)
       at System.Xml.Serialization.Compiler.Compile(Assembly parent, String ns, XmlSerializerCompilerParameters xmlParameters, Evidence evidence)
       at System.Xml.Serialization.TempAssembly.GenerateAssembly(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, Evidence evidence, XmlSerializerCompilerParameters parameters, Assembly assembly, Hashtable assemblies)
       at System.Xml.Serialization.TempAssembly..ctor(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, String location, Evidence evidence)
       at System.Xml.Serialization.XmlSerializer.GetSerializersFromCache(XmlMapping[] mappings, Type type)
       at System.Xml.Serialization.XmlSerializer.FromMappings(XmlMapping[] mappings, Type type)
       at System.Web.Services.Protocols.SoapClientType..ctor(Type type)
       at System.Web.Services.Protocols.SoapHttpClientProtocol..ctor()
       at Microsoft.SqlServer.ReportingServices2010.ReportingService2010..ctor()
       at Microsoft.SqlServer.ReportingServices2010.RSConnection2010..ctor(String reportServerUrl, Boolean useSharePointProxy)
       at Microsoft.ReportingServices.UI.Global.get_ReportServer()
       at Microsoft.ReportingServices.UI.Global.SecureAllAPI()
       at Microsoft.ReportingServices.UI.GlobalLinks.Control_Init(Object sender, EventArgs args)
    ui!ReportManager_0-4!115c!04/30/2015-08:00:43:: e ERROR: HTTP status code --> 500
    -------Details--------
    System.IO.FileNotFoundException: Could not find file 'C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp\uiy82bjf.dll'.
    File name: 'C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Temp\uiy82bjf.dll'
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at Microsoft.CSharp.CSharpCodeGenerator.FromFileBatch(CompilerParameters options, String[] fileNames)
       at Microsoft.CSharp.CSharpCodeGenerator.FromSourceBatch(CompilerParameters options, String[] sources)
       at Microsoft.CSharp.CSharpCodeGenerator.System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(CompilerParameters options, String[] sources)
       at System.CodeDom.Compiler.CodeDomProvider.CompileAssemblyFromSource(CompilerParameters options, String[] sources)
       at System.Xml.Serialization.Compiler.Compile(Assembly parent, String ns, XmlSerializerCompilerParameters xmlParameters, Evidence evidence)
       at System.Xml.Serialization.TempAssembly.GenerateAssembly(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, Evidence evidence, XmlSerializerCompilerParameters parameters, Assembly assembly, Hashtable assemblies)
       at System.Xml.Serialization.TempAssembly..ctor(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, String location, Evidence evidence)
       at System.Xml.Serialization.XmlSerializer.GetSerializersFromCache(XmlMapping[] mappings, Type type)
       at System.Xml.Serialization.XmlSerializer.FromMappings(XmlMapping[] mappings, Type type)
       at System.Web.Services.Protocols.SoapClientType..ctor(Type type)
       at System.Web.Services.Protocols.SoapHttpClientProtocol..ctor()
       at Microsoft.SqlServer.ReportingServices2010.ReportingService2010..ctor()
       at Microsoft.SqlServer.ReportingServices2010.RSConnection2010..ctor(String reportServerUrl, Boolean useSharePointProxy)
       at Microsoft.ReportingServices.UI.Global.get_ReportServer()
       at Microsoft.ReportingServices.UI.Global.SecureAllAPI()
       at Microsoft.ReportingServices.UI.ReportingPage.EnsureHttpsLevel()
       at Microsoft.ReportingServices.UI.ReportingPage.ReportingPage_Init(Object sender, EventArgs args)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Page.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    ui!ReportManager_0-4!115c!04/30/2015-08:00:44:: e ERROR: System.Threading.ThreadAbortException: Thread was being aborted.
       at System.Threading.Thread.AbortInternal()
       at System.Threading.Thread.Abort(Object stateInfo)
       at System.Web.HttpResponse.End()
       at Microsoft.ReportingServices.UI.ReportingPage.ShowErrorPage(String errMsg)

  • SQL Server Integration Services 11.0 not showing

    To whom it may concern,
    I have been using SSIS 2008 R2 without a problem.  I then installed VS 2012 and migrated my SSIS packages from VS 2010 to VS 2012.  I also installed the BI Components (SSDTBI_VS2012_x86_ENU) in VS 2012,
    All the SSIS packages runs fine within VS 2012.  As soon as I run the packages from the command line (i.e. "C:\Program Files\Microsoft SQL Server\110\DTS\Binn\dtexec.exe") the packages referencing any lookup objects provides the following
    error: 
    Error: 2014-04-21 13:20:15.85
    Code: 0xC000F427
    Source: Update Category SSIS.Pipeline
    Description: To run a SSIS package outside of SQL Server Data Tools you must install Derived Column of Integration Services or higher.
    End Error
    Error: 2014-04-21 13:20:15.85
    Code: 0xC000F427
    Source: Update Category SSIS.Pipeline
    Description: To run a SSIS package outside of SQL Server Data Tools you must install Lookup [Table Name] of Integration Services or higher.
    End Error
    I checked my services on my Local machine and the following integration service is the only one available:
    SQL Server Integration Service 10.0 (i.e. SQL Server Integration Service 11.0 is missing)
    I presume this is the problem.  
    I will appreciate it if someone can assist with this problem.  I have also tried to repair MS-SQL 2012 (Express Version) to no avail (Shared Features).
    Kind Regards,

    Hi, I am running SSIS on a Local Dev Machine and I am trying to execute the packages via the "C:\Program Files\Microsoft SQL Server\110\DTS\Binn\dtexec.exe" Command Line It look as though I need to remove my previous version of SSIS and then install the
    2012 SSIS.
    I have also downloaded the extend MS SQL 2012 Express Version (1.9 GB), but still no no avail.  It therefore seems to be related to the previous version of SSIS that I possibly need to remove and then try to reinstall SSIS for 2012.
    I will revert back as soon as I have done these tests.
    As I said before, the Express version doesn't have SSIS.
    MCSE SQL Server 2012 - Please mark posts as answered where appropriate.

  • I'm new to SQL Server Integration Services and I need help on how to begin learning SSIS. Is there any training for it besides msdn?

    I'm new to SQL Server Integration Services and I need help on how to begin learning SSIS. Is there any training for it besides msdn?

    Check this thread where people have already given their suggestion on learning SSIS
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/f2cc1cf3-204d-454a-a189-47df87a3aa23/i-want-to-learn-ssis?forum=sqlintegrationservices
    I would suggest to go for You tube videos (type learn SSIS or begin SSIS step by step) you will get lot of good tutorials to start with.
    Happy Learning!!
    If this post answers your query, please click "Mark As Answer" or "Vote as Helpful".

  • IOS: Wi-Fi settings grayed out or dim

    iphone with a year and two months of use and the wifi stopped working, what to do? here in Brazil costs around $ 1500.00 U.S. dollars in Brazil. I hope that is not the device so expensive.
    iOS: Wi-Fi settings grayed out or dim

    http://support.apple.com/kb/ts1559

  • TS1559 iOS: Wi-Fi and Bluetooth settings grayed out or dim

    I have done everything from "Reset Network Settings" to "Erase All Content and Settings" and finally restoring the iOS Software (7.0.6), but the Wi-Fi settings are still grayed out. Bluetooth is also not getting enabled. Can anyone suggest what can be done?

    Powell360 wrote:
    This has happened to me very recently too. Is it a know hardware issue or do we need an update?
    Follow this article: iOS: Wi-Fi settings grayed out or dim
    If that fails to resolve the issue, follow this article: iOS: How to back up your data and set up your device as a new device
    If that fails, the device has a hardware fault.

  • TS1559 Wi-Fi and Bluetooth settings grayed out

    HELOOO !!! APPLE  do something with WI-FI

    Powell360 wrote:
    This has happened to me very recently too. Is it a know hardware issue or do we need an update?
    Follow this article: iOS: Wi-Fi settings grayed out or dim
    If that fails to resolve the issue, follow this article: iOS: How to back up your data and set up your device as a new device
    If that fails, the device has a hardware fault.

  • SQL 2012 Reporting Services

    Doesn't SQL 2012 Reporting Services require IIs to be installed? It appears to be working on a Windows 2012 server without IIs installed.

    Hi,
    IIS is no longer needed for reporting services the web service and site are native to the ssrs service.
    This dependency was removed in 2008 actually.
    Here is some info:
    http://blogs.technet.com/b/andrew/archive/2007/12/04/sql-server-2008-reporting-services-no-longer-depends-on-iis.aspx
    hope this helps.
    Chas Hyman

  • What happens when a VM with 2012 Integrations Services migrates to a 2008 R2 Hyper-V server?

    I've been going through our Hyper-V environment to make sure our VMs have the latest, greatest Integration Services installed. I found one 2012 running a 2012 version of Integration Services on this 2008 R2 Hyper-V server. What kind of issues can this
    cause? Should I uninstall the current version and 'downgrade' them to 2008 R2?
    Orange County District Attorney

    Hi,
    No, you should not. If the operating system is supported on a hyper-v version you can use it. This means if Windows Server 2012 is supported on Windows Server 2008 R2 hosts you can use Windows Server 2012 or Windows Server 2008 R2 with the Windows Server
    2012 integration services installed as a guest OS.
    You can find supported guest OS lists here
    http://social.technet.microsoft.com/wiki/contents/articles/2761.hyper-v-supported-guest-os-list.aspx
    http://OpsMgr.ru/

  • TS1559 please help me...my iphone 4s has a problem with wi-fi settings grayed out or dim

    please help me...my iphone 4s has a problem with wi-fi settings grayed out or dim

    http://support.apple.com/kb/TS1559

  • TS1559 I have tried "iOS: Wi-Fi or Bluetooth settings grayed out or dim"... it's still not working. I can't tap the wifi.

    I've tried the instructions under the subject but the Wifi is still gayed out. what to do?

    Powell360 wrote:
    This has happened to me very recently too. Is it a know hardware issue or do we need an update?
    Follow this article: iOS: Wi-Fi settings grayed out or dim
    If that fails to resolve the issue, follow this article: iOS: How to back up your data and set up your device as a new device
    If that fails, the device has a hardware fault.

Maybe you are looking for

  • Client Install Issue - SCCM 2012 R2 - Manual Deploy Installed ok

    Hello, I have sccm 2012 configured with 2,000 machine approx. It is been used mainly as a Software Deployment tool for now. On checking a recent IE10 upgrade, I noticed that there is a number of machines that do not have the client installed (and thu

  • Can I stop one specific folder from being opened by anyone but me?

    I have private files in a folder that is contained within the home folder on my Macbook Pro. I want to lock that folder so that only I can access it. But I do not need to lock any of the other folders on the Mac. How do I do this?

  • I have deleted iCloud off my phone but was still charged for the extra storage. How do I get my money back?

    I deleted iCloud off my phone a few months back because it seemed to be slowing down my phone. I am no longer interested in keeping iCloud on my phone in the future. I was charged $20 to upkeep my extra storage that I purchased last year but am no lo

  • Bug in JMS adapter?

    Hi all, I'm struggling to integrate ESB JMS adapter with Weblogic. I'm able to produce message, however when I try to consume it seems ESB is not able to handle Weblogic JMSMessageID in format: ID:P<1212131.123123123123> SEVERE: Activity monitor mana

  • Interpret EXPLAIN PLAN TABLE OUTPUT

    Please point me to some document to understand on how to interpret this data, especially " OUTLINE DATA ". ORCL > explain plan for select * from hr.employees e, hr.departments d where e.department_id = d.department_id ; Explained. Elapsed: 00:00:00.1