The SBO 2005 B - database helth-checkup SQL Procedure

Dear Friends,
Could you please give me "The SBO 2005 B - database helth-checkup query" for SQL Server?

Hi Narottam,
Do you mean for Inventory Valuation Checkup query, it is available in the link mentioned below.
https://websmp205.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000705765&_SCENARIO=01100035870000000183&_ADDINC=011000358700001192682007E&_OBJECT=011000358700001515052008E
Regards,
Vijay Kumar
SAP Business One Forums Team

Similar Messages

  • Run Reporting services 2005 with databases housed on SQL Server 2012?

    Hi, I have a RS 2005 install in which the ReportServer and ReportServerTempDB databases reside on a different SQL Server 2005 server. I am planning to upgrade DB server to 2012 and would like to keep SSRS as 2005.As a second phase I will upgrade SSRS2005
    to SSRS 2008. So I would be running something like this:
    Server A: SQL 2005 Reporting Services
    Server B: SQL 2012 database engine - housing ReportServer and ReportServerTempDB
    Is this configuration supported? 

    Hello,
    According to the
    BOL, Report Server service checks the database version at startup. If the report server is connected to a database that is an earlier version, the report server will update the database during startup.If you have a newer report server database, you
    cannot use it with an earlier version of a report server instances.
    In that case, the earlier versions of SQL Server Database Engine that can be used to host the SSRS report server databases. For example, In SQL Server 2005 Reporting Services, we can use either SQL Server 2000 or SQL Server 2005 to host the databases, for
    SSRS 2012, we can use SQL Server 2012,2008 R2,2008,2005.
    Based on my test, In the Reporting Services 2005 Configure Manager, we can create a new database on a remote SQL Server 2012 database engine and the Initialization is successful.
    In this way, the databases are created from the script file which installed with the Reporting Services instance, you can find the Catalog.sql and CatalogTempDB.sql  under folder C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportServer.
    However, when upgrade the existing ReportServer database and ReportServerTempDB database on the SQL Server 2012 by restore from a backup, we cannot use this existing database for Reporting Services 2005 and get the following message:
    The database version (162) does not match your reporting serivces installation.And the initialization failed.
    In your case, you can host the ReportServer database and ReportServerTempDB database of SSRS 2005 on SQL Server 2012 database enginer by create a new database from Reporting Services 2005 Configure Manager. But you cannot use the existing
    database which upgrade to SQL Server 2012.
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • Parsing Through the Multi Selection Values in a PL/SQL Procedure

    Greetings,
    This should be an easy one for one of you PL/SQL experts. I'm not, so I am unsure how to code this up.
    I have a Multi Selection page item and am passing the value of it to a PL/SQL routine as a parameter. I am able to use the value if I only pass my procedure one value, so I have it working. Just not with multi-values I need the code in the procedure to loop through the values. How do I code that up? The procedure is relatively short and is included below. p_cell is the multi-value parameter.
    Oh yes... You probably need to know this. The values are coming in like this - 1-3:2-3:3-3:5:6
    Also, the values are the x-y coordinates of a grid I have over an image on the page. The routine removes certain cells (1-3, etc.) from the grid. The grid is created using HTML, so I have to remove lines of HTML to remove a cell from the grid. Just in case that is helpful.
    Thx, Tony
    = = = = = = =
    create or replace
    procedure qcis_remove_grid_cell(p_id IN NUMBER,p_cell IN VARCHAR2) as
    v_position number;
    v_position_from_end number;
    v_line_start number;
    v_line_end number;
    v_length number;
    v_html clob;
    BEGIN
    BEGIN
    select imagemap_html into v_html from qcis_im_template_draft
    where header_id = p_id;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    v_html := NULL;
    END;
    v_length := length(v_html);
    v_position := INSTR(v_html,'alt="'||p_cell||'"');
    v_position_from_end := (v_length - v_position) * -1;
    v_line_start := INSTR(v_html,'<area shape',v_position_from_end) - 1;
    v_line_end := INSTR(v_html,'/>',v_position) +2;
    v_html := substr(v_html,1,v_line_start) || substr(v_html,v_line_end);
    UPDATE qcis_im_template_draft SET imagemap_html = v_html WHERE header_id = p_id ;
    END qcis_remove_grid_cell;
    Edited by: cloaked on Nov 1, 2011 8:01 AM

    Not sure I understood your need, but it sounded like you need to unscramble a string into a set of rows. If so, I would give you 2 ideas:
    1. STRING_TO_TABLE function: http://www.sloug.org/i/doc/api073.htm
    2. Other ways (Regular expression or XML): http://apex-at-work.blogspot.com/2011/05/two-ways-using-string-to-table-in-apex.html

  • Replacing a SQL Server 2005 Express Database with a SQL CE 3.5 database

    I am just googling for the past few days to find out the answer to this problem..
    I have an app developed over few man-years of effort - with vb.net and SQL 2005 Express Db. Now we use VS 2010 sp1 with .net 3.5 sp1.  We have used plain T-SQL commands and the app was performing admirably well. The DB has about forty tables. The data
    volume is about 200 to 300 mb max - but mainly it stays about 50 to 60 mb in many places. We are also using XML data transfers to backup the data.
    Now we want to shift to SQL CE 3.5 or 4.0 - just to avoid the pain of SQL Express download and installation by the users. We have successfully created a 3.5 and 4.0 sdf files. But when we change the connection from a mdf file to the sdf file in the VS2010 settings
    area, it just goes fine - the connection string is accepted and the app starts. But we get the usual error no 26 - unable to locate the database file - and a five line message that it is not able to connect to the sql server.
    Are we missing something ? We have included the sqlce dll in the references.. but just not able to make the app connect to the sdf file..
    All the codes, datasets, adapters, queries are just intact in the app - but just we are not able to connect to the sdf database.
    We would appreciate help in this regard and also in doing a build with SQL Ce with Inno Setup which we have been using so long.
    Finally there is too much of SQL CEs around - but 3.5, 3.5 sp2 and now CE 4.0 seems to be ones to go in for. Which one is really the best for our app - 3.5 or 4.0 ?
    Thanks in advance.

    we change the connection from a mdf file to the sdf file ... All the codes, datasets, adapters, queries are just intact in the app...
    Agree with Erik, just changing the connection string don't work, you have to use data access components from
    System.Data.SqlServerCe Namespace instead of
    System.Data.SqlClient Namespace
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Second DB Connection to the Standard R/3 Database in Open SQL?

    Is there any explicit way in Open SQL to open a second DB connection to standard R/3 database? I want to save some data to the database, but do not want to interrupt the connection and its transaction context. So I need to open a second DB connection to store these data.
    I learn from some notes that Native SQL can be used to open second connection either to the standard R/3 DB or to another database(same manufacturer or not), which we would not use. Our need is just to connect to the standard R/3 DB.
    Anyone can help, I would very appreciate.

    Hi Stanley!
    You are talking about an user-exit / BADI? They are never
    inside select ... endselect loop. You can just insert your own data in any Z-Table. Don't rise any commit work - then your data fits in SAP's 'logical unit of work'-concept.
    Or do you plan to do something different?
    Regards,
    Christian

  • SBO 2005 PL43 database upgrade to 8.8 PL15

    Hi, I installed 8.8PL10 In the new server. Now waiting License key so that to upgrade to PL15. Is it I need to use 8.8 PL15 upgrader tool if I restore SBO2005 PL43 company database and upgrade to 8.8 PL15? Where I can find this tool?
    Regards
    Cheh Lu

    Hi Chehlu,
    Yes, you need the PL15 as an upgrader tool.
    You can download from this link:
    http://service.sap.com/sbo-swcenter
    In the website, click updates --> sap business one 8.8.
    you must have S-id and password to download it. If you have it, you must also have authorization to download it. if you are a partner, you can download it. if you are a B1 end user, you must ask sap partner to download it for you, it is free as long as you have paid SAP B1 maintenance fee.
    JimM

  • Where can I put the Pers. Chat database? On SQL Express on the Pers. Chat server?

    I am rolling out a deployment of Lync 2013 with a Standard Edition server.  The Planning tool recommended that I have a separate Persistent Chat server rather than collocated it on the SE server.  If I make a separate PC server, we don't have
    a SQL Backend server to put the DB on since our users will be on a SE server. 
    My question is, can I either put the PC Database on the PC server or the SE server?  Or will I have to provision a backend SQL instance just for PC?
    Thanks,
    Brandon

    Thanks Raju. 
    I think we're going to cram it onto the SE server rather than make a whole SQL backend server just for persistent chat.
    Since this is a small deployment, it recommends a standard edition server in the Planning Tool yet recommends a separate PC and SQL servers.  I now plan on collocating both PC and PC DB on the SE.
    I appreciate your help!
    Brandon

  • SBO 2005 Patch 05 + MS SQL 2005

    The latest version of SBO (2005A patch 05) is compatible with the new Microsoft SQL server version 2005?
    Tanks
    Angelo

    No.
    On another thread, this was discussed. The version that will be compatible with SQL Server 2005 is the SBO 2005 SP1, not patch level 5, but Service Pack 1.
    And, I think this is going to be released for Ramp up in January, and expected to be released by Q2.
    Harold

  • SBO 2005 SP01 - New installation package

    Hi.
    I'm testing MS SQL 2005.
    I need the complete installation package for SBO 2005 SP01. I cannot find it on the partner portal. I'm only able to find the upgrade packages PL01 an PL03.
    Anyone got the complete package ?
    Regards,
    Jostein Kastet

    Hi Jostein,
    The SBO 2005 SP01 is only an upgrade of the 2005 version.
    Please upgrade to the last 2005 patch, then upgrade to SP01 PL01 and after that apply the patch PL03.
    Hope it helps
    Trinidad.

  • Compatibility between SDK 2004 and SBO 2005 A

    Hello to everybody,
    The company I joined to has an SBO 2005 running.
    the installation seems not to have an SDK in it.
    The SDK available is the one of 2004.
    I wonder if an AddOn I'm to develop will work on the SBO 2005.
    Or how can I obtain a new SDK to install?
    Regards, vt

    Please go over the E-learning and/or the SDK classroom material...
    ..then you will understand better what "the SDK" means - and that "the SDK" (i.e. the runtime components) is always there where you install the product
    + SDK Help Center (the onloine help) is available here on SDN
    ...SDK samples, UDO library + header + a few tools will be missing though then...

  • How to find out Forms Server version in pl/sql procedure

    How can I get the version number and/or patchset of the Forms Server through which my pl/sql procedure has been called?
    Thanks,
    Attila

    You can't do this through PL/SQL. PL/SQL runs on the database server whereas Forms Server runs on the web server which are two different environments (even when they are installed on the same physical machine).
    I don't know about Web Forms, but there may be a Forms built-in that can give you the information you require. You could then pass it as a parameter to the PL/SQL procedure.
    Alternatively you could write a Java stored procedure to somehow pick up the information from the OS.
    rgds, APC

  • Calling PL\SQL procedures

    What's the best way to invoke a PL\SQL procedure using Java?
    I am hoping to use the values passed from the JSP into the database for computations but don't know how to call the procedure after the commit.
    Any ideas?
    Thanks a lot!

    Example follows for a PL/SQL proc call from a Java application that returns a result set and displays it in a scrolling pane. Hope it helps you:
    setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    try
    CallableStatement call =
    OpenDBConnections.myJdbcConnection.prepareCall
    ("{? = call MY_PLSQL_PROC(?)}");
    call.registerOutParameter(1,OracleTypes.CURSOR);
    call.setString(2,partNumber_tf.getText().toString());
    call.execute();
    OracleResultSet rset=(OracleResultSet)call.getObject(1);
    /* use caching result set cuz it is non scrollable stored proc result */
    model = new CachingResultSetTableModel(rset);
    result_tbl = new JTable(model);
    status_tf.setText(result_tbl.getRowCount()+" matching Rows found.");
    jScrollPane1.getViewport().add(result_tbl, null);
    rset.close();
    call.close();
    setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    catch (SQLException esql)
    System.out.println(esql.toString());
    }

  • Executing pl/sql procedure in SQL Workshop

    Hello.
    My understanding is that the only way to execute a pl/sql procedure in the SQL Workshop is via SQL Scripts, because running it under SQL Commands causes
    "ORA-00900: invalid SQL statement".
    Here is the statement I would like to run:
    execute efax_letter_to_pharmacist ('8888888888','ASDFSFSFSF','1','APN123456789','81');
    and here is the message I get when I run it under SQL Scripts:
    You have requested to run a script that does not contain any runnable statements.
    Script Name TEST
    Created on 02/14/2008 10:47:15 AM by ADMIN
    Updated on 02/14/2008 10:56:45 AM by ADMIN
    Number of Statements 0
    Script Size in Bytes 86
    thanks
    Boris

    Boris,
    Execute is a SQL*Plus command.
    It should work if you call your procedure in a begin-end block. e.g:
    begin
      efax_letter_to_pharmacist ('8888888888','ASDFSFSFSF','1','APN123456789','81');
    end;

  • How to insert BLOB datatype image using PL/SQL Procedure and SQL Loader

    Hi,
    How to insert an image into database using PL/SQL Procedure and also how to insert using SQL Loader. Please help by giving sample code and process description.
    Thanks,
    Vijay V

    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:232814159006

  • I plan to upgrade the SSRS 2005 SP2 enterprise edition in our internal web server to 2005 SP4, the Reporting server database is hosted in another sql server in sql server 2005 SP4. Do I need to do anything on the reporting server database side?

    My question is what the steps do I need to take to upgrade SSRS from 2005 SP2 to SP4.  The web server that host the SSRS is in 2005 SP2, and the OS is in window 2003. 
    Our SSRS report server and report server database are in different servers.  The SSRS in the web server is in 2005 SP2 enterprise edition, the report server database is in sql server 2005 SP4 enterprise edition.
    To upgrade the SSRS in web server from 2005 sp2 to sp4, do I need to backup/restore the encryption key?  Nothing will be changed in the report server database.  We will still pointing to the same database in the current server, all
    I wanted to do is performing a inplace upgrade of SSRS from 2005 SP2 to SP4.  
    Any response will be greate appreciated.  Thank you!
    Li-hui Chen

    Hi Lihui Chen,
    According to your description, you want to install the Services Pack 4 for SQL Server. Right?
    In SQL Server, Services Packs are used for fixing issues of current version product. It's not an Upgrade, you don't have to backup/restore your encryption key. You just need to download the Service Pack 4 on:
    Microsoft SQL Server 2005 Service Pack 4 RTM  . Please make sure you have administrative rights on the computer to install SQL Server 2005 SP4. For more information, see links below:
    How to obtain the latest service pack for SQL Server 2005
    List of the issues that are fixed in SQL Server 2005 Service Pack 4
    SQL Server 2005 SP4, KBA 2463332, Installation Issues
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

Maybe you are looking for

  • Can I combine or merge songs into a single album?

    When I view my albums in iTunes, many are fragmented into several albums. This is especially true for albums that contain songs by several artists, like "Saturday Night Fever" but also for albums by the same artist like "Future Shock" by Herbie Hanco

  • Security update broke Citrix

    I use Citrix to access my office network, and have been using the latest version (10.00.6) since it was launched a week or so ago. Today I installed the new Leopard security updates on my MacBook, and now Citrix won't work - I get an error message "E

  • Color Balance Issue importing from DV Deck Via Firewire...

    The fact that searching google and this formum has lead to me finding NO results, I am wondering whether anyone has or is experiencing similar issues.. For some time now, I have been having this issue, which I just realized is not normal. I have a So

  • Is there anything better than iPihoto?

    Hi there, I'm a long time iPhoto user, but I think I'm out growing it. I have about 5000 photos in my library now (and no, I don't want to split it into smaller libraries). I have a 1ghz PowerMac G4 and the speed of iPhoto isn't that bad. The issue I

  • 7300 - DVI-I or DVI-D?

    Hi Im a little confused, does the 7300 output DVI-I or DVI-D? Cheers Nick