Integration services on UN

 

I am not sure whether I am understanding your question correctly. But if you want to schedule crontab you can do so by logging in with your essbase root id or the essbase admin id. Hope it helps.

Similar Messages

  • SAP Business One Integration Services Authentication Failed

    Dear ,
    ALL SAP forum members,
    Iam Using SAP Business One 8.81 PL 06, Micorsoft SQL 2008 R2
    In SLD B1DI and  JDBC, the connections were tested successfully.
    Whenever I log into SBO, I am getting "SAP Business One Integration Services Authentication Failed" error message. I did extensive research on all possible SBO documents dating 1 year back especially in B1ic Troubleshooting Document (New and Old) and searched the length of the SBO forums, but I could not a solution.
    I uninstalled and reinstalled the B1f package many a time. The integration services we re also restarted many times and the connections were all tested successfully. Firewall, AntiVirus also checked.
    In the B1f, in the Monitoring Window, the login is "Ok" but the AuthCheck is "Failed". I checked Authent.Monitor->Authentic Info  and I found the following message under Action message "Wrong Usrname and Password".
    I debugged and i found again "/com.sap.b1i.vplatform.scenarios.authen/sap.Xcelsius/Authenticate_Check.bfd
    But could not understand much of it.
    But i could go no further. The experts are requested to suggest their solutions, If any, to me as Iam stuck in this phase for the last 3 week
    I hope some experts will guide me over this issue
    Thanks and regards
    Ashish Gupte

    Hi Konstantin Ryahovsky
    Thanks for your reply. My problem is solved.
    And frankly speaking i dont know how it was solved. I have not uninstall, install ,not even i had restarted the server also.
    only change i did in SLD >> Maintainance >>> cfg Runtime >>>> Put server IP address instead of server Name and restarted the services.
    Thanks & regards
    Ashish Gupte

  • How can I retrieve an existing .dtsx File out on Integration Services Catalog

    I have a problem with an older SSIS Package and I am trying to decipher what exactly it does. I see the Package in Microsoft SQL Server Management Studio and in our Server and under
    Integration Services Catalog. It has a .dtsx extension on it.
    Is there any way that I can copy this Package, this .dtsx file, and open it Microsoft Visual Studio to see what exactly it does?
    There doesn't seem to be anything available when I <Right-Click> on the .dtsx Package within Microsoft SQL Server Management Studio to Save As or anything similar. This is the first time I've ever had to look at something existing in the SSIS World.
    I just don't know how to get it out and reference and view it is all.
    Any help is greatly appreciated and Thanks in advance for your review.

    Hi ITBobbyP,
    Based on your description, you want to export a .dtsx package file from Integration Services Catalogs, then open it in SQL Server Data Tools.
    Based on my test, we can create a project based on a project in Integration Services Catalogs, then we can look into the package in the project. For more details, please refer to the following steps:
    Open SQL Server Data Tools, Click File, point to New, and click Project.
    Expand Business Intelligence, and click Integration Services.
    Select Integration Services Import Wizard in the middle pane, type a name for the solution, project, and specify the folder for the project, and then click OK.
    In the Select Source page, select Integration Services Catalog option, specify the name of database server instance on which the catalog exists, and the path to the project in the catalog.
    Click Next on the Select Source page to see the Review page.
    Click Import to create a new Integration Services project based on the one you selected.
    Double-click the desired package name to open the package in the project.
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • [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

  • Error while running SSIS package from Integration service or via Job

    Hi All,
    I encounter the below error while running SSIS Package from Job or integration service. However on execution completes success fully while running from data tools. The issue occurs after migration to 2012 from 2oo5 dtsx. PFB the error.
    SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on OLE DB Source returned error code 0xC02020C4.  The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by
    the component, but the error is fatal and the pipeline stopped executing.  There may be error messages posted before this with more information about the failure.
    A buffer failed while allocating 10485760 bytes.
    The system reports 26 percent memory load. There are 206110765056 bytes of physical memory with 150503776256 bytes.
    free. There are 2147352576 bytes of virtual memory with 185106432 bytes free. The paging file has 208256339968 bytes with 145642921984 bytes free.
    The package also runs successfully from other servers. This happens only in one of our server.seems like issue with some sql configuration.

    Hi ,
    Are you running using SQL Agent Job and Data tools on same server or different?
    If it is executing fine using Data tools and failing with Job it might be User credentials issue.Try
    to run Job with your credentials by using proxy .
    Regards,
    Prathy
    Prathy K

  • Error while running maintenace plan "Integration Services evaluation period has expired."

    We are getting below mentioned error while executing SSIS package or maintenance plan.
    Executed as user: ICROSSING\*****. Microsoft (R) SQL Server Execute Package Utility 
    Version 11.0.3381.0 for 64-bit  Copyright (C) Microsoft Corporation. All rights reserved.   
    Started:  3:35:00 PM  Error: 2014-02-23 15:35:01.56    
    Code: 0xC0000033     Source: Db Engine database Log backup     
    Description: Integration Services evaluation period has expired. 
    End Error  Error: 2014-02-23 15:35:01.58    
    Code: 0xC0000033     Source: Db Engine database Log backup     
    Description: Integration Services evaluation period has expired. 
    End Error  Could not execute package because of error 0xC0000033. 
    Started:  3:35:00 PM  Finished: 3:35:01 PM 
    Elapsed:  0.671 seconds.  The command line parameters are invalid. 
    The step failed.
    We have license BI edition of sql server 2012. Other services and database are working fine. Issue with integration service only.
    Please help me sort out the issue.
    Thanks,
    Shitalkumar Kasliwal

    Hi Shitalkumar,
    The issue may occur if Evaluation Edition or CTP Edition of SQL Server was installed earlier on the server, however, the previous instance of SQL Server was not uninstalled completely or upgraded to Business Intelligence Edition successfully. To resolve
    the issue, modify the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\110\ConfigurationState registry key value from 1 to 3, and then rerun the Edition Upgrade procedure from the SQL Server install media to upgrade the SQL Server components to the
    licensed edition again.
    Reference:
    http://support.microsoft.com/kb/971268 
    Regards,
    Mike Yin
    TechNet Community Support

  • SSIS package not working on 2012 Integration Service Catalog deployment

    I've set up a package that imports data from an excel spreadsheet(my only possible data source).  I deployed it and it worked for a while and then broke.  I had to switch to a generated connection string for excel with IMEX=1 to make things work.
      Now it works fine on from Visual Studio on my local machine, but when I run it from Integration Services I get:
    "The external column "<COLUMN NAME>" needs to be updated, for every column in the spreadsheet.   I am using the same excel file on my local machine as on the other machine.
    Why can't I get it to work when it's deployed to the SSIS Server?

    Hi,
    Excel files are a bit tricky to work with. Any small change in data type, metadata can make your package fail.
    I have had such experience earlier. The file contents, columns everything was same but it used to fail with same metadata issue.
    Here is what helped me:
    1. I tried to clear all formatting using the excel formatting options and it worked for me. But we can't ask the users to do all these things manually before uploading files to the application.
    2. So, I created a new excel file and created all column headers manually. Please make sure don't copy paste from any other excel file otherwise formatting and metadata will get changed.
    3. Once you have the template ready. Configure your package Excel columns according to the template.
    4. Now, If you copy and paste data into this plain formatting free file, data will adapt the template settings and won't give the metadata errors.
    5. We uploaded the same template on our application and users created the data in same template which resolved the issue for us.
    CSVs on the other hand don't have any such issues.
    Hope this helps. Good Luck!

  • 2008 R2 Hyper-V Integrated services error 61658...

    Kind of got myself into a bad situation I think. I run a single Windows 2008 R2 Server w/SP1 that hosts 5 VM's that host two Windows Server 2003 SP2 machines and the rest are 2008 R2 Servers w/SP1. On one of the 2003 VM's I was having issues
    with the mouse not being captured. I decided to reinstall the integrated services. The reinstall seemed to complete normally, but when it was done the mouse capture still did not work. So I rebooted just to check and still no mouse capture. 
    So I went into add remove programs and uninstalled it. I rebooted and then noticed the problems that caused. The uninstall made the VM lose the SCSI adapter and the NIC. So after getting a legacy NIC added I was able to be past that issue, but no
    VHDs are accessible that were are connected to the SCSI Controller. When I try to install the Integrated Services, it gets part way through the "Updating Storport Driver" step and then throws this message: [ (X) An error
    occurred: One of the update processes returned error code 61658.] This machine is our Active Directory (Domain) Controller.  Again to mention, this is only machine out of the 5 that is having this problem. Any help would be greatly
    appreciated.
    PS: None of these are installed using Beta or RC's versions of the OS, the Hyper-V server and the VM's have all been in place for 2+ years working fine. 
    Thanks
    Update: A friend of mine looked things over and found a vmg...log file that shows the problem is when the Integrated Services install try's to run the a KB that fails to installed: (KB943295). So I will investigate.  But I did get the
    server up and running again by adding a legacy network adapter and moving the two VHD files that were attached to the problem VM's SCSI controller to the VM's IDE controller.  So a band-aid I know but at least I was able to get 41 users back working
    after 7 hours of pulling out my hair! I do need to know I have this VM functioning 100% as it should so I'll continue to work on it.

    Hi SScott2010,
    Please try the following setps :
    1. backup the problematic VM first
    2. If the VM was migrated from virtual pc , please run "msconfig " --> click the boot tab then click advanced options --> select the Detect HAL check box
    3. make sure the service " cryptographic service " is running  automatically.
    4. restart the VM
    5. Install  the hotfix of kb822798  in the problematic VM :
    http://support.microsoft.com/kb/822798/en-us
    6. try to install the Integrated Service again.
    Hope it helps
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Windows 2012 R2 hyper-v integration services update - error code: 50

    Physical Host is a brand new Windows 2012 R2 with hyper-v role, VM is a Windows Server 2012
    I try to upgrade the integration services update, VM become unresponsive and I lost connection to it,  had to turn it off, afterwards it wouldn't boot.
    Tried F8 on the reboot and then switched to the command prompt to manually upgrade the integration services running the setup, but got an error (Error code: 50 )
    VM halts in the middle of booting up.
    saying: Please wait ...
    Anyone has any idea why it happened and how to fix this?

    Hi Seyed,
    Please try to follow the link below to install integration services manually :
    http://blogs.technet.com/b/virtualization/archive/2013/04/19/how-to-install-integration-services-when-the-virtual-machine-is-not-running.aspx
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How to Install Integration service from hyper-v host to a virtual machine ?

    i have around 100 Virtual Machine distributed on a cluster hyper-v cluster so i need to know how to install the upgraded version of integration service from the hyper-v host to all  virtual machines
    that has a mismatched version of the integration service using power-shell script ?

    See this article:
    PowerShell Script
    for Automated Install of Hyper-V Integration Services in a VM running on Windows Server 2012 with Hyper-V V 3.0 Role using PowerShell Remoting
    Mike Crowley | MVP
    My Blog --
    Planet Technologies

  • Improper Install of Hyper-V 2012 R2 Integration Services on 2008 R2 VMs

    I have two VMs that have one or more missing/broken services after upgrading to Integration Services 6.3.9600.16384.  On one VM the Hyper-V Remote Desktop Virtualization Service is missing and the Hyper-V Data Exchange Service won't start.  The
    other VM was missing the Hyper-V Remote Desktop Virtualization Service.  I was able to create that service by restoring registry entries from another VM with working integration services and re-registering the DLLs from the driver, but the service won't
    start.  Both services that won't start return the error "1083: The executable program that this service is configured to run in does not implement the service".   I also tried an Offline
    Install of Integration Services, but that didn't fix anything.  Since I am running 2008 R2, there is no uninstall available (I did modify the powershell script from the abve link to uninstall, but it didn't work).  I have been un-successful in
    finding a way to trick/force the installer to install again over top of itself.

    Hi Gregg,
    Thank you for posting in Windows Server Forum.
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thank you for your understanding and support.
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Hyper-V 2012 R2, integration services issue on multiple VMs

    Hello,
    I came to you because we encounter a technical issue on one of our Hyper-V (2012 R2).
    Our backup (Veeam backup in last version) are still failing with error :
    Guest processing skipped (check guest OS VSS state and integration components version)
    After checking integration service states of those VMs on the Hyper-V, we get this result :
    Get-VM | ft Name, IntegrationServicesVersion
    Name                                                       
    IntegrationServicesVersion
    xxx-3REP-01                                                
    6.3.9600.16384
    xxx-ADMIN02
    xxx-BAK02                                                  
    6.3.9600.16384
    xxx-MAIL-01
    xxx-SCOM-01-1                                              
    6.3.9600.16384
    xxx-SQL02                                                  
    6.3.9600.16384
    xxx-VC-01                                                  
    6.3.9600.16384
    xxx-VD01
    xxx-VMM02
    xxx-VMM03
    xxx-WEB01
    Get-VMIntegrationService xxx-vmm02 | Select Name,OperationalStatus
    Name                                                       
    OperationalStatus
    Time Synchronization                                       
    {Ok}
    Heartbeat                                                         
      {Ok, Ok}
    Key-Value Pair Exchange                                  {LostCommunication}
    Shutdown                                                          
    {LostCommunication}
    VSS                                                       
                  {LostCommunication}
    Guest Service Interface                                     {LostCommunication}
    I already try to disable, then enable the operationalStatus :
    Disable-VMIntegrationService -VMName MyVM -Name VSS,Shutdown,"Key-Value Pair Exchange"
    Enable-VMIntegrationService -VMName MyVM -Name VSS,Shutdown,"Key-Value Pair Exchange"
    The status is OK, but If I retry my backup I have the same error.
    So, is there a way to reinstall integration service component without rebooting ?
    Many thanks for your help.

    On the Windows VMs that are not 2012 R2, insert the Integration media ISO, install it, and reboot.
    When all is done, run this:
    # Input:
    $HVHost = "YourHostHere"
    # Processing:
    $VMInfo = @()
    Get-VM -ComputerName $HVHost | where { $_.State -eq "Running" } | % {
    $Info = New-Object -TypeName psobject
    $Info | Add-Member "VMName" $_.Name
    $Info | Add-Member "IntegrationServicesVersion" $_.IntegrationServicesVersion
    $OS = Invoke-Command -ComputerName $_.Name { (Get-CimInstance Win32_OperatingSystem).version } -ErrorAction SilentlyContinue
    $Info | Add-Member "OSVersion" $OS
    $VMInfo += $Info
    # Output:
    $VMInfo | Out-GridView
    $VMInfo | FT -AutoSize
    $VMInfo | Export-Csv .\VMInfo.csv -NoTypeInformation
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable) _________________________________________________________________________________
    Powershell: Learn it before it's an emergency http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx

  • Help On Integration Services

    Hi all.
    I'm trying to load members in CostCenter dimension using integration services [Release: 11.1.1.3.0 (Build EIS111130B021)].
    This dimension has two Hierarchies:
    * Hier 1 [stored]
    * Hier 2 [with shared members]
    At first loading, from relational lookup table to hyperion CostCenter dimension, everything goes just fine including shared member creation.
    This is the result
    hier 1
    ====
    Branch 01
    |-costcenter 20
    |-costcenter 30
    |-costcenter 40
    |-costcenter 50
    Branch 02
    |-costcenter 60
    |-costcenter 70
    |-costcenter 80
    hier 2
    ====
    Chief010 (Mr. Smith)
    |-costcenter 20 [shared]
    |-costcenter 30 [shared]
    |-costcenter 40 [shared]
    Chief030 (Mr. Green)
    |-costcenter 50 [shared]
    |-costcenter 60 [shared]
    |-costcenter 70 [shared]
    |-costcenter 80 [shared]
    After a company cost center reorganization I need to reload updated Hier into essbase via integration services.
    The new hier 1 and hier 2 structure should be like this:
    hier 1
    ====
    Branch 01 (empty)
    Branch 01.01
    |-costcenter 10 [new]
    |-costcenter 20
    |-costcenter 30
    |-costcenter 40
    Branch 02
    |-costcenter 50
    |-costcenter 60
    |-costcenter 70
    |-costcenter 80
    instead is:
    hier 1
    ====
    Branch 01
    |-costcenter 20
    |-costcenter 30
    |-costcenter 40
    |-costcenter 50
    Branch 01.01
    |-costcenter 10 [new]
    |-costcenter 20 [shared]
    |-costcenter 30 [shared]
    |-costcenter 40 [shared]
    |-costcenter 50 [shared]
    Branch 02
    |-costcenter 50 [shared]
    |-costcenter 60
    |-costcenter 70
    |-costcenter 80
    hier 2
    ====
    Chief010 (Mr. Smith)
    |-costcenter 10 [shared]
    |-costcenter 20 [shared]
    |-costcenter 30 [shared]
    |-costcenter 40 [shared]
    |-costcenter 50 [shared]
    Chief030 (Mr. Green)
    |-costcenter 50 [shared]
    |-costcenter 60 [shared]
    |-costcenter 70 [shared]
    |-costcenter 80 [shared]
    I suppose it depends on the fact that:
    *in metaoutline/ properties/ allows duplicate shared member is flagged (otherwise hier 2 should not be created);
    *in dimension/ properties/ add as shared member is flagged (otherwise hier 2 should not be created);
    Unflagging these options shared member are not created.
    Morover:
    I cannot clear and reload member or delete an recreate database in order to prevent data loss.
    I'm forced to use integration services in order to create drill-trough reports.
    Any help would be appreciated, thanks in advance.
    Agathe

    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".

  • Unable to install Integration Services for SQL Server 2005

    I'm not able to select "Integration Services Project" in Business Intelligence Development Studio (it is not in the templates below):
    When installing, it says that it is already installed. Why can't I see it in the project templates?

    Microsoft Visual Studio 2005
    Version 8.0.50727.867  (vsvista.050727-8600)
    Microsoft .NET Framework
    Version 2.0.50727 SP2
    Installed Edition: Professional
    Microsoft Visual Basic 2005   77626-009-0000007-41773
    Microsoft Visual Basic 2005
    Microsoft Visual C# 2005   77626-009-0000007-41773
    Microsoft Visual C# 2005
    Microsoft Visual C++ 2005   77626-009-0000007-41773
    Microsoft Visual C++ 2005
    Microsoft Visual J# 2005   77626-009-0000007-41773
    Microsoft Visual J# 2005
    Microsoft Visual Studio 2005 Tools for Applications   77626-009-0000007-41773
    Microsoft Visual Studio 2005 Tools for Applications
    Microsoft Visual Web Developer 2005   77626-009-0000007-41773
    Microsoft Visual Web Developer 2005
    Microsoft Web Application Projects 2005   77626-009-0000007-41773
    Microsoft Web Application Projects 2005
    Version 8.0.50727.867
    AnkhSVN - Subversion Support for Visual Studio   2.5.12440.9
    AnkhSVN - Subversion Support for Visual Studio 2.5.12440.9 
     * Ankh.Package 2.5.12440.9
     * Subversion 1.8.8 via SharpSvn 1.8008.3178.19
    SharpSvn is linked to: Apr 1.5.0, Apr-util 1.5.3, Cyrus Sasl 2.1.25, eXpat 2.0.1, OpenSSL 1.0.1g 7 Apr 2014, serf 1.3.4, SQLite 3.7.17, Subversion 1.8.8-SharpSvn-1.8.8, ZLib 1.2.8
    SharpSvn is optionally linked to: Berkeley DB 4.4.20, SharpPlink 1.8008.3178.19
    Hotfix for Microsoft Visual Studio 2005 Professional Edition - ENU (KB2938803)   
    Microsoft Visual Studio 2005 Professional Edition - ENU Service Pack 1 (KB926601)   
    Security Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB2251481)   
    Security Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB2538218)   
    Security Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB2548826)   
    Security Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB971090)   
    Security Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB973673)   
    SQL Server Reporting Services   
    Microsoft SQL Server Reporting Services Designers 
    Version 9.00.2047.00
    Update for Microsoft Visual Studio 2005 Professional Edition - ENU (KB932232)   

  • Error in "Configure the Role of the Integration Service",pls,help me :-(

    Hi Guru:
    When i run the Template Installer,I got the following error in the step 19:"Configure the Role of the Integration Service"
    ===================================================
    Element 'SXMB_SET_ROLE_TO_IS':ONLY_ONE_CENTRAL_XMB
    Element 'SAPDEMO.E01.Backend.Unclassified':!AbapConfigurationWriter.FM_CALL!SXMB_SET_ROLE_TO_IS!AbapConfigurationWriter.FAILED!
    ===================================================
    What can i do whit this error?are there anyone who encountered this problem so far?
    Best regards
    alex zhang

    Hi,
    Are you installing temp. Installer with Admin user id, make sure this user should have all necessary roles for installations. Check and try to login in SDM.
    THanks
    Amit lal
    Reward points if answer suits your requirement.

  • 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".

Maybe you are looking for