Registering Dll's When BPC App is on D and SQL Server is on C

I am having an issue registering the Osoft DLL's for SSIS in Bids.  I have SQL Server on my C: and BPC on D: so the DLL's can be seen on D: but when I get inot bids it says the DLL's are not registered.  Becasue they are not on the C: Drive.  I do not want to reinstall BPC on the C: Drive.

Hi Phil,
you are doing a confusion.
When you are doing the installation of SAP BPC but actually for any software product registration of dll means it is created a key into registry.
So you don't need to registry the dll you just have to copy some files from d folder into folder where sql server was installed.
Please use the HTG for SSIS packages from follow link
https://www.sdn.sap.com/irj/scn/wiki?path=/x/zb4
There as you see we don't speak about any registration.
Registration into Visual Studio is something else to be able to see the tasks.
So you don't need to install again BPC you have just to copy some files.
Kind Regards
Sorin Radulescu

Similar Messages

  • BPC 7.5 MS SP06 and SQL Server 2008 R2 SP1 CU2?

    It the latest CU for SQL Server supported? I am installing BPC 7.5 MS SP06 and wondering if I can use SQL Server R2 SP1 CU2.

    Hi Josef,
    That should be fine. However you should still  review the nature of all fixes in that update. Test and roll out onto production
    Thanks,
    John

  • Installed hotfix for error 3241 when you run RESTORE FILELISTONLY statement in SQL Server 2008 R2. But still get same errormessage.

    I ran into erro 3241 when you run RESTORE FILELISTONLY statement in SQL Server 2008 R2.
    Found the hotfix 
    Cumulative Update 13 for SQL Server 2008 R2 SP1.
    I have installed this hotfix, now running 10.50.2876.0
    But I still get the same error when trying to restore a backup.
    What else do I need to do?

    second to what bodo said Instead of installing SQL server 2012 SP1 CU13 it would be better to install
    SQL Server 2008 r2 Sp2 SP's are more throughly tested and would include all fixes for CU and Sp1
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Articles

  • Sap4.7 and sql server 2000 on windows2003:when install di ,error:MDB-05039

    sap4.7 and sql server 2000 on windows2003:
    when install database instance ,there is a error,at change  tempdb
      MDB-05039:Unable to stop server dev ,
    please help !!!!

    Every time you start SQL Server it also creates a new tempdb. When you change the layout (physical structure, size) you have to restart SQL Server in order for these changes to take effect.
    It seems that the installation routine has changed the layout (it does that according to your input!) and is now trying to stop and restart SQL Server. When you run into this error, have you tried to stop and restart SQL Server manually? After that choose the Retry option of the installation routine. Just a guess...
    Do you have some more log information?
    Sven

  • TS1424 How do u get a refund when the app fails to work and the app knows it but keeps charging???

    How do I get a refund when an app fails and the company knows it but still charges you?

    Go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

  • How can I develope a native mobile cross platform app that can access an SQL server.

    I would do it in html5 as a web app but I also need to access an SQL server and upload data(text) pictures from the camera and
    geolocation data etc.
    I've developed many web based applications, but this is this first attempt to integrate native device functions AND interact with an SQL database.
    So it would have to be able to use form data  then add a photo and geolocation and send everything to the database.
    A site with examples and/or tutorials would be nice.
    To make things worse, I'd also have to be able to work offline and re-sync when networks connections allow.
    If a native app would be too complex, then I was thinking I might be able to develope an app that gathers data then
    passes the info on to a browser to connect with the database.
    But as much as possible I don't want to have to swing back and forth between a browser and an app.
    Pete

    Here is a page a I bookmarked a while back to use jQUERY to access a php scripts sitting on a server that can then interact with the database in the usual way. This means that you will be able to use DW to create the usual HTML CSS and jQuery to make an interactive app.
    I havn't yet tried this but a quick look over the script looks good. Make sure you use php that sanitizes input.
    http://stackoverflow.com/questions/8246380/adding-a-database-to-jquery-mobile-site
    Let me know how you go.

  • Encrypting communication between an app that uses an ODBC/DSN (with ADODB) and SQL Server 2008 R2

    I've been doing a lot of reading the last couple of days on how we can encrypt db communication between our product app and a customer's SQL Server db, but cannot make it work as expected. The app uses a ODBC/DSN to connect to the SQL Server db. I use this
    ODBC app to setup the DSN (on a Windows 7 PC):
    C:\Windows\SysWOW64\odbcad32.exe
    The  DSNconnection uses the SQL Server driver 6.01.7601.17514 and has these properties:
    - WinNT authentication.
    - Client Config button: TCP/IP to <server-name>\<instance.-name>
    - Change to default db: <name-of-app-db>
    - Everything else is default setting.
    SQL Server is on the same Windowns 7 PC and has a self-signed cert installed (used IIS to generate it) and has the Force Enryption set to "yes".
    I have a test C# program that uses the ADODB 2.7.0.0 COM-wrapper, made by Visual Studio after adding a reference to the ADO 2.7 library version 6.1.7601.17857. The program creates an ADODB.Connection object that has a simple connection string: "DSN=<san-name>;UID=<user>;PWD=<password>". The
    program then creates an ADODB.Recordset object and reads and displays a field from a table.
    Works fine.
    If I go into SQL Server and set Force Encryption to "no," clear the cert, restart the SQL service, and then re-run the program, it works fine.
    Here's the kick. If I go into the DSN and select "Use strong encryption for data" the Test button on the DSN works—why does it work? The SQL Server is no longer encrypting the connection so an error should occur. If I run the test program, it works
    as well—why? I can look at the connection properties in the test program and see that ADODB has added the ";Encrypt-yes" stuff to the end of the connection string. Yet that option seems to have no effect.
    If I set the SQL instance back to Force Encryption:yes, enable the cert, restart the SQL service, and clear the DSN's "Use strong encryption for data" option, I can still connect to the db with the
    test program—why?
    What am I doing wrong? I need to be able to ensure that the communication between our app product and the SQL instance is encrypted, and that we get an error if the SQL instance does not support encrypted communications. We really don't want the customer
    to have to enable Force Encryption because they have other db's on their SQL Server that do not use encrypted communication, but they want to know that our product's communication channel with the db is encrypted.
    No, I can't change the app product's code at this point in time. I'm stuck with working with what a DSN called from ADODB has to offer.
    Also, how can I be sure that communications are encrypted? I mean, I've tried things like "SELECT * FROM sys.dm_exec_connections" but that doesn't help because I have no idea how to tie the list of sessions shown back to my test program, although
    I guess it's a good thing that some of the sessions listed show encrypt_option as TRUE.
    -glenn-

    Ah yes, very good point. It's easy to miss because you have to delete then recreate the DSN in order to change drivers. So I switched the DSN over to the SQL Native 11 driver.
    Now when I try to connect to the SQL instance as <computer-name>\<instance-name>, and without a cert on the server, I get "the target principal name is incorrect". Perfect; now we're getting somewhere!
    Change my DSN to use <fqdn>\<instance-name> and it works. This tells me that SQL Server has auto-generated a cert and named it <fqdn>. I would have expected the "cert fail" error, not a cert
    name mismatch, because I'm not using Trust Server Cert.
    So I load up my self-signed cert, and that works too.
    I am still confused as to why I'm not seeing the "cert fail" error when I have no cert loaded on the SQL Server. I am not using Force Encryption on the server at all, so wouldn't expect SQL Server to auto-create a cert when an Encrypt=yes request comes in,
    but apparently it does?
    I also ran into a problem with this:
    select c.session_id, c.encrypt_option, s.client_interface_name
    from sys.dm_exec_connections c
    join sys.sysprocesses s
      on c.session_id = s.session_id
    where s.dbid = db_id('MyDatabase')
    There is no s.client_interface_name, probably should be s.hostname. There's also no s.session_id. I thought maybe this should be s.sid, but then no rows ever come back. The c.session_id looks like 51 and 52, but the s.sid looks like a very long binary number,
    so these two fields cannot be joined. I don't know how to convert the sid's properly so that the join would work. Ah wait, I just found the s.spid column; the join works when that column is used (I assume that's correct anyhow).
    If I add a Thread.Sleep(30 seconds) to my C# program just before the connection is closed, this query shows me the session for the correct hostname has encrypt_option=TRUE.
    And I have to keep my fingers crossed that all the app I/O will still work properly after
    changing the driver. Probably a safe bet though.
    Think I'm ready to throw in the towel on getting the "cert fail/no SSL" error to appear.
    It does look like I am able to sufficiently show that the connection is encrypted when Encrypt=yes is used with the newer driver.
    Thank for all the help!
    -glenn-

  • Error rsItemNotFound when using ReportingService2010 endpoint in SharePoint Mode (SQL Server 2012 & SP2013)

    Hi all,
    I installed SQL Server 2012 in SharePoint Mode, with SharePoint 2013 on a Windows Server 2012 virtual machine. The issue occurs when I try to use the ListChildren operation of the ReportService2010 endpoint.
    It manages to connect to the server, but it refuses to list any children. Here's the code I'm using:
    using System;
    using System.Net;
    internal class Test
    public static void Main()
    var rs = new ReportingService2010
    Credentials = new NetworkCredential("username", "password", "machine")
    CatalogItem[] items = null;
    // Retrieve a list of all items from the report server database.
    try
    items = rs.ListChildren("/", true);
    catch (Exception e)
    Console.WriteLine(e.Message);
    When executed, this code throws an exception (which is caught and displayed) : "The item '/' cannot be found. (rsItemNotFound)"
    The same code works (i.e. does not throw any exception and the items variable contains some CatalogItem) when used against a SQL Server 2012 configured in native mode.
    I'm not sure what I'm doing wrong here, maybe the first parameter shouldn't be "/" but something else?
    Thanks for your help
    Aotio

    +1
    I'm getting this error as well.  My test software is connecting to two different servers; one is running on SharePoint 2010 and I have no problems using the ReportingService2010 functions on that, but I am getting this same error when trying to connect
    to a service on SharePoint 2013.

  • When installing DPM2012 R2 to a remote SQL Server 2012 R2 Sp1 produces an error 832

    Sorry for bad english 
    Good afternoon trying to overcome the installation error 832 
    There are two virtual servers on ESXI 
    1. DPM on it trying to install itself DPM 
    2. SQL it should be a database DPM 
    SQL virtual machine on the net it was added component NetFW 3.5 put SQL Server 2012 SP1 EN-en. In the first plug SQL Data Base, Report Services, SQL Management studio from all services are running under a domain administrator 
    When you install SQL selected Server Collation "SQL_Latin1_General_CP1_Cl_AS" 
    Both hosts have Windows Server 2012 R2 En-en 
    DPM virtual machine clean, installed on it NetFW 3.5 and the component SQL Management studio, when you install DPM SQL Server validation errors not issued, at the end of the installation gives an error 832 
    Windows Server 2012 R2, SQL Server 2012 Sp1, DPM 2012 R2, all downloaded from a site microsoft 
    Visited rearrange SQL, rearrange Windows, put Ru-ru and En-en 
    Went to run the SQL from under Local system and other domain account 
    Where then subtracted that you want to create a domain / local recording Microsoft$DPM$ACC and run from under her service 
    did not help. 
    The only thing that bothers me more is that the domain name is XXX.YYY.local here where you need to read that domain would look like XXX.local but not sure that's true

    Hi
    Can you post the log file so we can see the error in more detail?

  • When is or will there be a SQL Server 2012 R1 SP2 release date?

    SQL Server 2012 SP 1 was released over a year ago on 11/8/2012. When is the next service pack going to be available?  I see announcements for SQL Server 2014 CTP's, but what about fixing 2012?
    SQL Server is now up to CU5. I had a small hand in CU5 after reporting issues with CU4.  One of the fixes found in CU4 broke SSRS multi-value reports, oddly enough.  CU5 continues to have 'unexpected errors' but SSRS is
    fixed.  Where CU's clearly stated to have limited testing and no guarantee to work in all environments, it is essential these cummulative updates are packaged in a hardened Service Pack.
    Is there no SP2 release date in sight?

    Hello,
    I have never seen Microsoft releasing a service pack of SQL Server on January. I think you should
    expect the next SQL Server 2012 service pack between February and April.
    Customers should expect SQL Server service packs every 12-15 months except for the first service
    pack of each new version. The first service pack of each new version comes usually 9 months after RTM has been released.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Classic ASP web app trying to acces remote SQL Server.

    Hi
    I have a classic asp web application which accessing a remote SQL Server 200. I am trying to connect using the following connection string in Global.asa file. For some reason not connecting to the remote SQL Server 200. The string is as follows.
    Session("dsn") = "provider=SQLOLEDB;app=AppName;server=SERVERNAME;uid=;password=;database=DBName;Trusted_Connection=No"
    Session("datadsn") = "data provider=SQLOLEDB;app=AppName;server=SERVERNAME;uid=;password=;database=DBName;Trusted_Connection=No"
    Session("server") = "SERVERNAME"
    Let me know if I am missing something or doing something wrong?
    Varun

    SQL Server Error Log has no error
    But I found couple of errors in Application EventViewer
    The VB Application identified by the event source logged this Application Globalization: Thread ID: 5312 ,Logged: -2147168246 New transaction cannot enlist in the specified transaction coordinator.  Error Source: Microsoft OLE DB Provider for SQL Server->ValidateUser
    A caller has attempted to propagate a transaction to a remote system, but MSDTC network DTC access is currently disabled on machine 'MyMachineName'. Please review the MS DTC configuration settings.
    Varun

  • BPC 5.0.502 and SQL Server 2008

    Our lease on our SQL box is up for renewal and my IT department wants to move our BPC 5.0.502 to a SQL 2008 box.  Will that version of BPC run on a 2008 box?  I'm thinking it doesn't, but wanted to check to see if it was possible.
    Thanks,
    Blake

    You are correct. 7m Is the first version that supports SQL2008.

  • BPC and SQL Server 2008

    Hello,
    Can BPC be run with SQL Server 2008 64 bit version? Has SAP released any notes on this?
    Thanks,
    Nikunj

    Excellent QUESTION.....BPC for Microsoft is currently going through a QA and evaluation process to verify the use of the new SQL version.  The application layer may still be 32 bit, but we hope to levergae the new specs and functionality of SQL 2008 to speed operation and solve other 2005 issues.  I will check with developemnt to see if we have any timeline.  If you wish to try it yourself, that is probably okay, just be aware that it will not be supported by SAP until it is certified.

  • Blank Image when using a gif image from a SQL Server Database

    Post Author: scsmith
    CA Forum: Publishing
    Hello,
    I'm trying to use a field from a SQL Server DB that has embedded GIF files. In Crystal Reports when I add the field to the report the picture is blank for every row. Any ideas?

    Post Author: kchiu
    CA Forum: Publishing
    i'm having the same issue. 
    I believe crystal doesn't support gif datatypes.
    I'm trying to either convert the images, or find a work around in crystal, but haven't found anything.

  • SAP BPC 5.1 and SQL Server 2008

    Hi,
    Can anyone please tell me if BPC 5.1 supports SQL server 2008? If so, can I have database and web server both on a single server (single server architecture)?
    Thanks for your reply!
    Maanas.

    BPC ONLY SUPPORTS Microsoft SQL Server 2008 using version 7.0 SP3 and future SP packs. Version 5.X is not certified or supported on anything but SQL 2000 and SQL2005.  Please move to version 7M SP3 for the power of SQL Server 2008.

Maybe you are looking for

  • Blue Ray Disk drive compatibility with DVD S Pro, Mac Pro

    Ok, I'll make this an official question, where might I find info on BDR drive compatibility with DVD S Pro, Mac Pro, etc? I'm a little surprised that there doesn't seem to be much info available. I can always use my Pioneer BDR-202 with a windows box

  • How to video out without closing the lid ?

    Dear all, I have a macbook from the latest generation with an external screen plugged on the DVI. If I want to use the screen as main display and not the one from my macbook, I need to close the lid of my laptop and reactivate it with my bluetooth mo

  • IMAGE IN A FORM

    I'm trying to embed an image in a form. For example: show a persons picture with his name address etc. Can someone tell me exactly how to do this? The form will contain fields that are updateable. I tried this: Created a region; Created items A,B,C i

  • GetResourceObjects for Domino Notes

    Hello, I am trying to check if the cn already exists in domino before i add a new one but i think i have the searchFilter wrong somewhere. Here's the code i am using <invoke name='getResourceObject' class='com.waveset.ui.FormUtil'>                   

  • Replace the hard disk has, and also have lost the OS disk.

    Replace the hard disk has, and also have lost the OS disk. Reset on my computer to install the program instantly, Is there any way? Thank you.