SAPWL_GET_SUMMARY_STATISTIC no longer returning data

We have been using FM SAPWL_GET_SUMMARY_STATISTIC to get data on who is doing what and what programs are being used for years.  About 2 -3 months ago it stopped getting data.  The program gets the host id from the SAPWLSERV-INSTSHORT.  Our host names for our application servers are 9 characters long so they do not work either.  Has anyone else had this problem or knows a solution?  We are on ERP 5 and will be going to ERP6 this year and it would help to know which programs are the most used.  Thanks!
Kevin

Hi,
SAPWL_GET_SUMMARY_STATISTIC is still used in ECC6 so there shouldn't by any problem. Can you see workload statistics in ST03N? If not then the problem is somewhere else. Is there any change that somebody from basis has changed the config (paramters stat/* in RZ11)?
Cheers

Similar Messages

  • Confusing result between 'to_date' and 'long to date' in oracle query

    I have a table called "subscription" as below.
    desc subscription;
    Name Null Type
    SUBSCRIPTION_ID NOT NULL NUMBER(38)
    EXPIRATIONDATE DATE
    And output of a query as below.
    select subscription_id,expirationdate from subscription where subscription_id = 41919;
    SUBSCRIPTION_ID EXPIRATIONDATE
    41919 18-JAN-14 13:45:56
    And I am trying to execute following query in different ways.
    1st Query:
    select s.subscription_id from subscription$active s where s.expirationdate - (116/24) between TO_DATE('13-JAN-14 11:38:22', 'dd/mm/yyyy hh24:mi:ss') and TO_DATE('13-JAN-14 18:30:00', 'dd/mm/yyyy hh24:mi:ss') and s.subscription_id=41919
    Output:
    SUBSCRIPTION_ID
    41919
    2nd Query:
    select s.subscription_id from subscription$active s where s.expirationdate - (116/24) between (trunc(1389613102220 / (1000), 0) / (24 * 60 * 60)) + to_date('01/01/1970','mm/dd/yyyy') and (trunc(1389637800000 / (1000), 0) / (24 * 60 * 60)) + to_date('01/01/1970','mm/dd/yyyy') and s.subscription_id=41919
    Output:
    SUBSCRIPTION_ID
    Here both the above where clause are same. 1st one is trying to use "to_date" and 2nd one converts "long to date". But when I see the out put, the first one returns a row and 2nd doesnot return any result. I couldn't find out what is difference the 'long to date' conversion makes here.
    The conversion between long to date is also correct.
    select (trunc(1389613102220 / (1000), 0) / (24 * 60 * 60)) + to_date('01/01/1970','mm/dd/yyyy') from dual
    Output:
    (TRUNC(1389613102220/(1000),0)/(24*60*60))+TO_DATE('01/01/1970','MM/DD/YYYY') -------------------------
    13-JAN-14 11:38:22
    And
    select (trunc(1389637800000 / (1000), 0) / (24 * 60 * 60)) + to_date('01/01/1970','mm/dd/yyyy') from dual
    Output:
    (TRUNC(1389637800000/(1000),0)/(24*60*60))+TO_DATE('01/01/1970','MM/DD/YYYY') -------------------------
    13-JAN-14 18:30:00
    Can someone help me to understand the difference between the 1st and 2nd query ?

    Hi,
    Not sure what exactly you asking for. What is the requirement?
    Just formatted for better readability:
    -->-- Query 1
    SELECT
      s.subscription_id
    FROM subscription$active s
    WHERE
      s.expirationdate - (116/24) BETWEEN
           to_date('13-JAN-14 11:38:22', 'dd/mm/yyyy hh24:mi:ss')
           AND
           to_date('13-JAN-14 18:30:00', 'dd/mm/yyyy hh24:mi:ss')
      AND s.subscription_id=41919;
    -->-- Query 2
    SELECT
      s.subscription_id
    FROM subscription$active s
    WHERE
      s.expirationdate - (116/24) BETWEEN
           (trunc(1389613102220 / (1000), 0) / (24 * 60 * 60)) + to_date('01/01/1970','mm/dd/yyyy')
           AND
           (trunc(1389637800000 / (1000), 0) / (24 * 60 * 60)) + to_date('01/01/1970','mm/dd/yyyy')
      AND s.subscription_id=41919;

  • Query is returning data very slowly

    Hi,
    Please advise for the solution. Thanks in advance.
    The problem is that the queries returning data very very slow.
    Let me explain further, There is one major table that is storing master data (Main Transaction) and its detail data (Child Records) and further detail of the detail data (Child Records of the Child Records) and so on sometimes upto 5 or 6 levels in the same ONE big table called "TRANSACTIONS_TABLE" table.
    Therefore, mostly my quries are self joins like
    SELECT /*+ FIRST_ROWS(10) */ JUDG.ID JUDG_ID,
    SE.ID SE_ID,
    CS.ID CS_ID,
    CS.CS_DATE,
    CS.CS_J_ID,
    CS.CT_ID,
    C.ID C_ID,
    C.TRANSACTIOIN_TYPE_ID C_TRANSACTIOIN_TYPE_ID,
    C.TRANSACTIOIN_NO,
    C.TRANSACTIOIN_YEAR,
    C.TRANSACTIOIN_DATE,
    C.SUBJECT,
    C.UNIT_ID,
    (SELECT U.NAME_N FROM ORG U WHERE U.ID = C.UNIT_ID) PRC_UNIT_DESC,
    C.E4 NO_AL_QAZYA_ID,
    SELECT T.DESCRIPTION
    FROM prc_charge_categories T
    WHERE T.ID = TO_NUMBER(C.E4)
    ) NO_AL_QAZYA,
    C.CREATED_BY
    FROM TRANSACTIOINSACTION_TABLE C,TRANSACTIOINSACTION_TABLE SE, TRANSACTIOINSACTION_TABLE JUDG, DEF_TABLE CS
    WHERE C.ID = SE.PARENT_ID
    AND SE.ID = J.PARENT_ID
    AND SE.TRANSACTIOIN_TYPE_ID = 63755
    AND J.TRANSACTIOIN_TYPE_ID = 63424
    AND J.E1 = '3'
    AND CS.ID = TO_NUMBER(SE.E9);
    23 rows selected in 48.672 seconds
    I run the below query on this table
    select transaction_type_id,count(*) total_rows
    from transactions_table
    group by transaction_type_id
    order by 2 desc;
    transact total_rows
    114893     1192544
    63755     774132
    62270     682361
    63424     633046
    65220     515605
    67728     457831
    84928     378754
    58806     296351
    64240     277624
    65244     275267
    67224     152061
    112610     123796
    67434     116100
    65824     88787
    61369     76196
    62269     74821
    61740     67085
    56448     56185
    65703     55336
    99601     54552
    64423     49368
    61478     43187
    101689     39372
    61652     38196
    67136     27713
    61364     25790
    97961     23610
    65380     19811
    56353     18910
    65618     18309
    57041     16808
    98137     15837
    101794     14618
    100127     14118
    98916     13691
    112735     13082
    117349     11930
    69334     11462
    99064     10291
    67811     10151
    69402     9142
    112753     8243
    95950     7390
    68902     6900
    119474     6693
    65659     5972
    68360     5862
    66198     5690
    118340     5161
    62012     4490
    71088     4050
    112040     3864
    57315     3047
    112031     2957
    57289     2891
    112039     2523
    112038     2446
    114254     2269
    55550     2242
    119926     2225
    69650     2135
    65033     1343
    119078     811
    69788     780
    115133     774
    116390     578
    114968     549
    65575     521
    64290     412
    120026     403
    67388     359
    116340     249
    66847     228
    98524     144
    68214     138
    120459     105
    118777     92
    79395     87
    116039     79
    65768     67
    118376     58
    120906     57
    55848     52
    58983     50
    61195     48
    68134     29
    66645     24
    55992     23
    69037     21
    70379     21
    56674     20
    112019     20
    68911     18
    70206     17
    66028     16
    114335     11
    69555     7
    55849     6
    57122     6
    65034     5
    60496     5
    57273     4
    56286     4
    55563     4
    56972     3
    55542     3
    70654     3
    55999     3
    56721     3
    57138     2
    117802     2
    57005     2
    61058     2
    116351     2
    57096     2
    57075     2
    95136     1
    115210     1
    117601     1
    68298     1
    56939     1
    65935     1
    61739     1
    65611     1
    71249     1
    57010     1
    95024     1
    68406     1
    57097     1
    122206     1
    57062     1
    132 rows selected in 5.266 seconds
    Immediately, I again run this same query
    132 rows selected in 5.079 seconds
    then again
    132 rows selected in 2.672 seconds
    then again
    132 rows selected in 4.438 seconds
    then again
    132 rows selected in 2.684 seconds
    The structure of this table is
    CREATE TABLE transactions_table
    ID NUMBER NOT NULL,
    PARENT_ID NUMBER,
    TRANSACTION_TYPE_ID NUMBER NOT NULL,
    TRANSACTION_YEAR NUMBER(4),
    TRANSACTION_NO NUMBER(8),
    TRANSACTION_DATE DATE NOT NULL,
    C1 VARCHAR2(255 BYTE),
    C2 VARCHAR2(255 BYTE),
    C3 VARCHAR2(255 BYTE),
    LONG_C1 VARCHAR2(4000 BYTE),
    LONG_C2 VARCHAR2(4000 BYTE),
    LONG_C3 VARCHAR2(4000 BYTE)
    TABLESPACE TS16K_DATA
    PCTUSED 0
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 3144M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    LOGGING
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;
    CREATE UNIQUE INDEX MOJ.EVN_PK_I ON transactions_table
    (ID)
    NOLOGGING
    TABLESPACE TS16K_INDX
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 168M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    NOPARALLEL;
    CREATE INDEX EVN_EVN_TYP_I ON transactions_table
    (TRANSACTION_TYPE_ID)
    NOLOGGING
    TABLESPACE TS16K_INDX
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 136M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    NOPARALLEL;
    There are 150 COLUMNS in this table and out of which there are 33 columns data type is VARCHAR2(4000 BYTE) and others NUMBER datatype and some are VARCHAR2(255 BYTE)
    As from above, the index on TRANSACTION_TYPE_ID is not unique and not bit map but a normal index.
    Further there are no partitions for this table.
    Many of the database views based on this table return results after several minutes.
    * Around 5000 to 8000 rows are entered in this table on daily basis and is it feasible to create partitions and modify indexes to bit map and vice versa where ever required because already this table is having 54 Indexes including composite ones.
    Please help and advise.

    When your query takes too long ...
    HOW TO: Post a SQL statement tuning request - template posting

  • Oracle: Expanded non LONG bind data supplied after actual LONG or LOB colum

    I am getting this error message when I try to insert clob into oracle table.
    ORA-24816: Expanded non LONG bind data supplied after actual LONG or LOB column. This error message is kind of misleading. For this error message, I should reorder the list of columns which means that the column with LONG RAW should come at end. So I reordered the list to make the LONG RAW column come at end. But I was still getting this error message. So I found out that data that needs to be inserted into the clob is causing this error.
    Here is my code for inserting clob.
                        byte[] bytes1 = .....
                        statement.setAsciiStream(index, new ByteArrayInputStream(bytes1), bytes1.length);I don't know what is wrong with this code. I have been using this for a while and now it is throwing an exception.
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:743)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:213)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:952)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1160)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3285)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3390)
    I am using JDK5 and Oracle 10g driver.
    Please help me.

    I have these columns,
    ROW_DESC - Char
    Table_id - Char
    Blob_desc - Char
    Blob1 - Blob
    LOB_DATE - Date
    CLOB1_DESC - Char
    CLOB1 - Clob
    CHAR_25_Col - Char
    VBIN_400_Col - Long Raw.
    But what I noticed is that the one causing the problem is not actually Long Raw column. "CLOB1" is the one causing a problem. The database is configured as unicode (AL32UTF8). When I tested it against another database with non-unicode, it works fine with same table description. So somehow it is unable to bind unicode large clob data.
    I ran into this problem while I was inserting data from the source table to the target table.
    Here is how I read from the resultset.
                        InputStream inputStream = resultSet.getAsciiStream(index + 1);
                        if (inputStream == null) {
                            return null;
                        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
                        byte[] buffer = new byte[1024];
                        int length;
                        do {
                            length = inputStream.read(buffer);
                            if (length > 0) {
                                outputStream.write(buffer, 0, length);
                        } while (length > 0);
                        byte[] resultBytes = outputStream.toByteArray();Here is how I bind parameters.
                        statement.setAsciiStream(index, new ByteArrayInputStream(resultBytes), resultBytes.length);If i use "((OraclePreparedStatement) statement).setStringForClob", then it works, but it will impact the performance, because I need to convert the clob to string.
    is there any way to do it without converting to string object?
    Thanks.

  • How to view the returned data from a stored procedure in TOAD?

    Hi,
    I created ref cursor in the stored procedure to return data. The stored procedure works fine, just want to view the result in TOAD. The BEGIN... EXEC... END can execute the stored procedure, but how to make the result display?
    Thanks!

    Right click the editor and choose
    "Prompt For Substitution Variables".
    Run for example the following code:
    DECLARE
    PROCEDURE p (cur OUT sys_refcursor)
    AS
    BEGIN
    OPEN cur FOR
    SELECT *
    FROM DUAL;
    END p;
    BEGIN
    p (:cur);
    END;
    The result will display in Toad's Data Grid!
    Regards Michael

  • Since installing 3.6.9 my Joomla content editor pop-up windows no longer return the URLs selected

    I recently upgraded to Firefox 3.6.9 and found that when using the editor in a Joomla 1.0.15 website , the content editor pop-up windows no longer return URLs selected (eg: image or file URL to be used in a link). I have been using the site with no problems for many years, and the problem was cured when I reinstalled 3.6.8

    Thanks cor-el but the problem is not in my web development but is a new issue/problem in FireFox which was not present in all versions up to and including version 3.6.8 and was only introduced in version 3.6.9. I have also established that the same problem also exists in FireFox version 4 beta 6 and have therefore also raised a second question today.
    My understanding was that I should raise these issues in this forum, but I will also check out the other forum.

  • Can not find Flush Return Data Buffer.vi

    When I try to start my Labview program I get a "Error -70025 occurred at Read Home Input Status.vi" because the Return Data Buffer is not empty.
    I searched for the Flush Return Data Buffer.vi in the Labview library but it is not there.
    Where can I find it?

    Hello Mishka,
    The Flush Return Data Buffer.vi should be located in your functions palette at Vision and Motion>>73xx>>Advanced>>Flush RDB.vi. Alternatively, you can press ctrl+space on your keyboard to open the quick drop menu and then search for Flush RDB.vi. 
    Regards,
    J_Bou

  • Can I return my MacBook Air past the return date?

    Hi, I have a question that I've been googling but I haven't been able to find an answer to anywhere. Can I return a MacBook Air past the return date to an Apple store if it is still in shrink-wrap and I have a receipt? Thanks.

    I would think you cannot return a product after the return date has passed.
    Call the Apple Store and ask them.

  • Return data from all columns apart from a certain data type.

    Bit stuck on something, hope somebody here can help:
    I want to do a 'select * from ' a table, to return all columns except ones of a certain datatype. ie. I want to return data from all columns, excluding columns of datatype 'SDO_GEOMETRY'.
    This gives me the list of columns:
    SELECT COLUMN_NAME
    FROM   USER_TAB_COLUMNS
    WHERE TABLE_NAME = 'ORDER_ITEM'
    AND   DATA_TYPE <> 'SDO_GEOMETRY'; But I can't seem to take it any further...
    Now if I knew the columns beforehand, then of course I could just list them, excluding the geometry column, but this is to be used for a plug-in for MS Word, where a user can pick database columns to dynamically fill a report from - but I don't want the geometry columns as these can't be handled in this way.

    Hi Reggie,
    > connects to the database and presents a list of tables
    My guess is that this macro is written so it selects from all_tab_cols.
    Change that plugin and let it select from a view like the one above. That way, the users won't be able to see/pick anything that you are not able/willing to present for them.
    Edit:
    You could even tease your users, and let them see the columns, but not being able to pick them.
    create or replace view available_tab_columns
    as
       select decode(pickable.data_type, null, 0, 1) pickable
             ,atc.* -- narrow down yourself
         from all_tab_cols atc  -- or maybe user_tab_cols
             ,(select 'CHAR' data_type from dual union all
               select 'DATE' from dual union all
            select 'NUMBER' from dual
               -- complete positive list, yourself
              ) pickable
        where atc.data_type = pickable.data_type(+);Regards
    Peter
    Message was edited by:
    Peter Gjelstrup

  • 'Driver]Parameter missing' Error while trying to pass parameter to MS query & Return Data to Microsoft Excel

    I am trying to set up a parameter query using ODBC-Microsoft Query
    to BMC Remedy The ODBC connection is "AR System ODBC Data Source".
    I want to pass a parameter to modified date field and get all the remedy tickets for which the modified date is<= to the passed parameter date.
    So in MS query, SQL- 
    the query looks like
     WHERE ("Trouble Ticket"."Create Date">={ts '2014-10-01 00:00:00'}) AND ("Trouble Ticket"."Modified-date"<=?)
    I am getting the data fetched from database in the MS query window, but unfortunately
    When I click File-Return Data to Microsoft Excel, its showing an error: Driver]Parameter missing
    I set the connection properties- parameter-Prompt for value using the following string.
    Please help

    Hi,
    Based on the error message, I recommend we try the suggestion: Replace all "..."  with [...]
    http://www.pcreview.co.uk/forums/error-parameter-query-odbc-remedy-bmc-software-com-t3232964.html
    Then, if you want to connect the Remedy's oracle database, please see the thread:
    http://www.tek-tips.com/viewthread.cfm?qid=1123112
    We may try the workaround: Write an Excel macro which connects to the database and fetch the data based on the SQL query.
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    If you have further question about write macro, I recommend you post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Query returns data from previous month. Need to have it return data for the entire year

    This is the part of the query that returns data by month:
    (YEAR(`rereport`.`market_reports_5`.start_date) = YEAR(CURRENT_DATE - INTERVAL 1 MONTH)AND MONTH(`rereport`.`market_reports_5`.start_date) = MONTH(CURRENT_DATE - INTERVAL 1 MONTH))
    How can I get it to return data for the year.
    TIY

    How about omitting the MONTH part:
    (YEAR(`rereport`.`market_reports_5`.start_date) = YEAR(CURRENT_DATE - INTERVAL 1 MONTH)
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • The ways to return data from a stored procedure.

    Hi, I know there are three ways to pass out a value from a Microsoft SQL stored procedure, but I have no clear idea what Oracle SP can do, I know Oracle doesn't support multi-recordset(v8), can not return a recordset by a inner select query, but I do know there is a cursor object, which doesn't like its counterpart in Microsoft SQL server, is a choice under most situation. Here I wonder anyone who is good at Oracle can give a list of all ways to return data from a SP, including example is more better, thanks.

    Here is a way to get return a record from a function and a procedure. You need to be familiar with Oracle packages as well as stored procedures and functions:
    CREATE OR REPLACE PACKAGE EmpPkg AS
    cursor cEmp(pEmpno in number) is
    select empno, ename, job, hiredate, sal
    from emp
    where empno = pEmpno;
    FUNCTION GetEmployee(pnEmpNo in number) RETURN cEmp%rowtype;
    PROCEDURE GetEmployee(pnEmpNo in number, prEmp out cEmp%rowtype);
    END;
    CREATE OR REPLACE PACKAGE BODY EmpPkg AS
    FUNCTION GetEmployee(pnEmpNo in number) RETURN cEmp%rowtype IS
    rEmp cEmp%rowtype;
    BEGIN
    open cEmp(pnEmpNo);
    fetch cEmp into rEmp;
    close cEmp;
    return rEmp;
    END;
    PROCEDURE GetEmployee(pnEmpNo in number, prEmp out cEmp%rowtype) IS
    BEGIN
    open cEmp(pnEmpNo);
    fetch cEmp into prEmp;
    close cEmp;
    END;
    END;
    Here's how you use the package:
    DECLARE
    rEmp EmpPkg.cEmp%rowtype;
    BEGIN
    rEmp := EmpPkg.GetEmployee(7782);
    dbms_output.put_line(rEmp.ename);
    EmpPkg.GetEmployee(7902, rEmp);
    dbms_output.put_line(rEmp.ename);
    END;
    Note that you can return any Oracle data type from a function. Likewise, you can specify any Oracle data type as an out parameter in a procedure. Also, you can make a parameter both an in and an out datatype like this:
    PROCEDURE GetEmployee(pnEmpNo in out number);
    I hope this puts you in the right direction.
    null

  • [b]Fill a DataGrid with the returned data of a Stored Procedure[/b]

    Hi
    I'm trying to use a stored procedure that returns data from the table tab_proc1 and a DataGrid that will display the results.
    Any help would be appreciated.
    bebop
    created the following in MS SQL Server:
    a table:
    create table tab_proc1 (col1 char(10), col2 char(10))
    a stored procedure:
    create procedure sp_test1
    as
    select * from tab_proc1
    Code I'm using:
    using System.Data;
    using System.Data.SqlClient;
    namespace spapc
         /// <summary>
         /// Summary description for WebForm1.
         /// </summary>
         public class WebForm1 : System.Web.UI.Page
              protected System.Web.UI.WebControls.DataGrid DataGrid1;
              protected System.Data.SqlClient.SqlDataAdapter sqlDataAdapter1;
              protected System.Data.SqlClient.SqlCommand sqlSelectCommand1;
              protected System.Data.SqlClient.SqlCommand sqlInsertCommand1;
              protected System.Data.SqlClient.SqlConnection sqlConnection1;
              protected sptempdbTEST.DataSet1 dataSet11;
              protected System.Web.UI.WebControls.Button Button1;
              private void Page_Load(object sender, System.EventArgs e)
         //sqlDataAdapter1.Fill(dataSet11);
              //Page.DataBind();
    private void Button1_Click(object sender, System.EventArgs e)
    SqlConnection conn = new SqlConnection("server=localhost;database=apc;uid=ty;pwd=");
    try
         conn.Open();
         SqlCommand cmd = new SqlCommand("sp_test1", conn);
         cmd.CommandType = CommandType.StoredProcedure;
         //cmd.CommandText = "sp_test1";
         SqlDataAdapter myadapter =new SqlDataAdapter();
         myadapter.SelectCommand = cmd;
         myadapter.Fill(dataSet11);
         //DataGrid1.DataSource=dataSet11.Tables("tab_proc1");
         DataGrid1.DataSource = cmd.ExecuteReader();
         DataGrid1.DataBind();
    catch (SqlException ex)
         finally
         conn.Close();

    Why are you posting to an Oracle site when you are using MS SQL Server? This is a discussion forum for ODP.NET which stand for ORACLE Data Provider for .NET. Not MS SQL Data Provider for .NET!!

  • How to view the returned data from a stored procedure?

    Hi,
    I created ref cursor in the stored procedure to return data. But how can I view the data when I execute it? The stored procedure works fine, just want to view the result.
    Thanks!

    SQL>set serveroutput on size 100000;
    SQL>set autoprint on
    SQL>variable cv refcursor;
    SQL>exec proc_name(param1,:cv);

  • Calendar no longer sends data to iphone since I got a new PC with Outlook 2010

    My iphone 4 used to happily sync with my old PC (Windows XP) but I've got a new PC with Outlook 2010 and the calendar no longer sends data from the PC to the iphone.
    I've used the Help questions here and created a new event on my phone which has now created a new calendar on the PC, so I have 2 calendars now, one with all events in and one only with events which are also on my phone.
    No new events added to my calendar are ending up on my phone.
    How do I:
    a: get rid of the new calendar which has opened (it is called "Outlook Data File", the existing one, which I want to keep, is called "Personal Folders)
    b: get the calendar to send info to my phone and back?

    My iphone 4 used to happily sync with my old PC (Windows XP) but I've got a new PC with Outlook 2010 and the calendar no longer sends data from the PC to the iphone.
    I've used the Help questions here and created a new event on my phone which has now created a new calendar on the PC, so I have 2 calendars now, one with all events in and one only with events which are also on my phone.
    No new events added to my calendar are ending up on my phone.
    How do I:
    a: get rid of the new calendar which has opened (it is called "Outlook Data File", the existing one, which I want to keep, is called "Personal Folders)
    b: get the calendar to send info to my phone and back?

Maybe you are looking for

  • Photos menu dissapears from Apple TV

    Photos menu dissapears from Apple TV as soon as I upload my library from my computer (the one that is synching with ATV) If I go to sources and I select ATV instead of my library the photos menu is back. In either case the photos are there as I can s

  • Changing the filename in Photoshop Action

    Hello, I couldn't find any tips with regards to how to use a "syntax" to rename the file just before "saving as" or "saving for web" options in PS. To understand what I'm trying to achieve, please let me describe the case on the example below: I have

  • "Save As..." still working in Pages and Lion

    Well, I'm not sure if this has been debated yet but what I find out is that the old function that we got so comfortable with in Pages, Numbers and Keynote still works after a full install of the OSX Lion. If you do a fresh install of OSX Lion on an e

  • HT2216 Applications on MacBook not working

    My MacBook turns out but no applications will open. Some keyboard shortcuts work but not the mouse. Not sure what software version I've got or how to find out when it's not working! Any help appreciated.

  • BTE 503113 - FIS_VBREVK_1&FIS_VBREVK_2 always empty

    Hi, Did anyone worked with BTE 503113? It seems  FIS_VBREVK_1&FIS_VBREVK_2 are always empty. It's called within FORM MAINTAIN_RR_STATUS (include LVFRRF0M), like this, so with dummy parameters: perform maintain_rr_status using pis_xvbak