WLI problem when processing a high number of records - SQLException: Data e

Hi
I'm having some trouble with a process in WLI when processing a high number of records from a table. I'm using WLI 8.1.6 and Oracle 9.2.
The exception I'm getting is:
javax.ejb.EJBException: nested exception is: java.sql.SQLException: Data exception -- Data -- Input Data length 1.050.060 is greater from the length 1.048.576 specified in create table.
I think the problem is not with the table because it's pretty simple. I'll describe the steps in the JPD below.
1) A DBControl checks to see if the table has records with a specific value in a column.
select IND_PROCESSADO from VW_EAI_INET_ESTOQUE where IND_PROCESSADO = 'N'
2) If there is one or more records, we update the column to another value (in other DBControl)
update VW_EAI_INET_ESTOQUE  set IND_PROCESSADO = 'E' where IND_PROCESSADO = 'N'
3) We then start a transaction with following steps:
3.1) A DBControl queries for records in a specific condition
select
COD_DEPOSITO AS codDeposito,
COD_SKU_INTERNO AS codSkuInterno,
QTD_ESTOQUE AS qtdEstoque,
IND_ESTOQUE_VIRTUAL AS indEstoqueVirtual,
IND_PRE_VENDA AS indPreVenda,
QTD_DIAS_ENTREGA AS qtdDiasEntrega,
DAT_EXPEDICAO_PRE_VENDA AS dataExpedicaoPreVenda,
DAT_INICIO AS dataInicio,
DAT_FIM AS dataFim,
IND_PROCESSADO AS indProcessado
from VW_EAI_INET_ESTOQUE
where IND_PROCESSADO = 'E'
3.2) We transform all the records found to and XML message (Xquery)
3.3) We update again update the same column as #2 to other value.
update VW_EAI_INET_ESTOQUE set  IND_PROCESSADO = 'S'   where IND_PROCESSADO = 'E'.
4) The process ends.
When the table has few records under the specified condition, the process works fine. But if we test it with 25000 records, the process fails with the exception below. Sometimes in the step 3.1 and other times in the step 3.3.
Can someone help me please?
Exception:
<A message was unable to be delivered from a WLW Message Queue.
Attempting to deliver the onAsyncFailure event>
<23/07/2007 14h33min22s BRT> <Error> <EJB> <BEA-010026> <Exception occurred during commit of transaction
Xid=BEA1-00424A48977240214FD8(12106298),Status=Rolled back. [Reason=javax.ejb.EJBException: nested
exception is: java.sql.SQLException: Data exception -- Data -- Input Data length 1.050.060 is greater from the length  1.048.576 specified in create table.],numRepliesOwedMe=0,numRepliesOwedOthers= 0,seconds since begin=118,seconds left=59,XAServerResourceInfo[JMS_cgJMSStore]=(ServerResourceInfo[JMS_cgJMSStore]=(state=rolledback,assigned=cgServer),xar=JMS_cgJMSStore,re-Registered =
false),XAServ erResourceInfo[weblogic.jdbc.wrapper.JTSXAResourceImpl]=(ServerResourceInfo[weblogic.jdbc.wrapper.JTSXAResourceImpl]=
(state=rolledback,assigned=cgServer),xar=weblogic.jdbc.wrapper.JTSXAResourceImpl@d38a58,re-Registered =false),XAServerResourceInfo[CPCasaeVideoWISDesenv]=
(ServerResourceInfo[CPCasaeVideoWISDesenv]=(state=rolledback,assigned=cgServer),xar=CPCasaeVideoWISDesenv,re-Registered = false),SCInfo[integrationCV+cgServer]=(state=rolledback),
properties=({weblogic.jdbc=t3://10.15.81.48:7001, START_AND_END_THREAD_EQUAL=false}),
local properties=({weblogic.jdbc.jta.CPCasaeVideoWISDesenv=weblogic.jdbc.wrapper.TxInfo@9c7831, modifiedListeners=[weblogic.ejb20.internal.TxManager$TxListener@9c2dc7]}),OwnerTransactionManager=ServerTM[ServerCoordinatorDescriptor=
(CoordinatorURL=cgServer+10.15.81.48:7001+integrationCV+t3+,
XAResources={JMS_FileStore, weblogic.jdbc.wrapper.JTSXAResourceImpl, JMS_cgJMSStore, CPCasaeVideoWISDesenv},NonXAResources={})],CoordinatorURL=cgServer+10.15.81.48:7001+integrationCV+t3+): javax.ejb.EJBException: nested exception is: java.sql.SQLException: Data exception -- Data -- Input Data length 1.050.060 is greater from the length 1.048.576 specified in create table.
        at com.bea.wlw.runtime.core.bean.BMPContainerBean.ejbStore(BMPContainerBean.java:1844)
        at com.bea.wli.bpm.runtime.ProcessContainerBean.ejbStore(ProcessContainerBean.java:227)
        at com.bea.wli.bpm.runtime.ProcessContainerBean.ejbStore(ProcessContainerBean.java:197)
        at com.bea.wlwgen.PersistentContainer_7e2d44_Impl.ejbStore(PersistentContainer_7e2d44_Impl.java:149)
        at weblogic.ejb20.manager.ExclusiveEntityManager.beforeCompletion(ExclusiveEntityManager.java:593)
        at weblogic.ejb20.internal.TxManager$TxListener.beforeCompletion(TxManager.java:744)
        at weblogic.transaction.internal.ServerSCInfo.callBeforeCompletions(ServerSCInfo.java:1069)
        at weblogic.transaction.internal.ServerSCInfo.startPrePrepareAndChain(ServerSCInfo.java:118)
        at weblogic.transaction.internal.ServerTransactionImpl.localPrePrepareAndChain(ServerTransactionImpl.java:1202)
        at weblogic.transaction.internal.ServerTransactionImpl.globalPrePrepare(ServerTransactionImpl.java:2007)
        at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:257)
        at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:228)
        at weblogic.ejb20.internal.MDListener.execute(MDListener.java:430)
        at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:333)
        at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:298)
        at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2698)
        at weblogic.jms.client.JMSSession.execute(JMSSession.java:2610)
        at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
        at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
Caused by: javax.ejb.EJBException: nested exception is: java.sql.SQLException: Data exception -- Data -- Input Data length 1.050.060 is greater from the length 1.048.576 specified in create table.
        at com.bea.wlw.runtime.core.bean.BMPContainerBean.doUpdate(BMPContainerBean.java:2021)
        at com.bea.wlw.runtime.core.bean.BMPContainerBean.ejbStore(BMPContainerBean.java:1828)
        ... 18 more

Hi Lucas,
Following is the information regarding the issue you are getting and might help you to resolve the issue.
ADAPT00519195- Too many selected values (LOV0001) - Select Query Result operand
For XIR2 Fixed Details-Rejected as this is by design
I have found that this is a limitation by design and when the values exceed 18000 we get this error in BO.
There is no fix for this issue, as itu2019s by design. The product always behaved in this manner.
Also an ER (ADAPT00754295) for this issue has already been raised.
Unfortunately, we cannot confirm if and when this Enhancement Request will be taken on by the developers.
A dedicated team reviews all ERs on a regular basis for technical and commercial feasibility and whether or not the functionality is consistent with our product direction. Unfortunately we cannot presently advise on a timeframe for the inclusion of any ER to our product suite.
The product group will then review the request and determine whether or not the functionality/feature will be included in a future release.
Currently I can only suggest that you check the release notes in the ReadMe documents of future service packs, as it will be listed there once the ER has been included
The only workaround which I can suggest for now is:
Workaround 1:
Test the issue by keep the value of MAX_Inlist_values parameter to 256 on designer level.
Workaround 2:
The best solution is to combine 'n' queries via a UNION. You should first highlight the first 99 or so entries from the LOV list box and then combine this query with a second one that selects the remaining LOV choices.
Using UNION between queries; which is the only possible workaround
Please do let me know if you have any queries related to the same.
Regards,
Sarbhjeet Kaur

Similar Messages

  • My 2nd generation ipod touch almost completes update of version 4 then error code 3259. any advice to help. Seems to download but problem when processing

    2nd generation ipod touch shows error message 3259 when trying to update with version 4 software from itunes. Looks as though downloading update but problem when processing. Any advice? thanks

    Try here. If not successful, try looking at the previous posts on the right under the heading: More Like This that have your same problem  Start with the one with the green checkmark.
    iTunes Store reporting error - 3259

  • HT201415 actually i am use iphone5 in bangladesh. But i am facing some problem , when i am useing the internet over cellular data network. when i am open the cellular data on but no icon E display but when Enable 3G on-of then E is aviable.its a device pr

    actually i am use iphone5 in bangladesh. But i am facing some problem , when i am useing the internet over cellular data network. when i am open the cellular data on but no icon E display but when Enable 3G on-of then E is aviable.its a device problem or Carrier ?

    Hafizur Rahman wrote:
    when i am open the cellular data on but no icon E display but when Enable 3G on-of then E is aviable.its a device problem or Carrier ?
    Problem? I'm not even sure what your problem is, much less whether it's a problem with the phone or the carrier.

  • ODS Activation - Number of Records Per Data Package

    Hello,
    We are using the default Global ODS Setting called "Min Num of Data Records"... which defaults to 10,000.
    However, when I activate the ODS and look at the job log, I see that less than 10,000 records are in most of the data packages.  Below is part of the job log.  If the setting says the minimum must be 10,000 then why am i seeing data packages with less?
    Thanks!
    Data pkgs 000027; Added records 2,536; Changed records 0; Deleted records 0
    Data pkgs 000028; Added records 2,436; Changed records 0; Deleted records 0
    Data pkgs 000029; Added records 1,171; Changed records 0; Deleted records 0
    Data pkgs 000030; Added records 1,743; Changed records 0; Deleted records 0
    Data pkgs 000031; Added records 1,552; Changed records 0; Deleted records 0
    Data pkgs 000032; Added records 8,048; Changed records 0; Deleted records 0
    Data pkgs 000033; Added records 10,001; Changed records 0; Deleted records 0
    Data pkgs 000034; Added records 10,001; Changed records 0; Deleted records 0
    Data pkgs 000035; Added records 10,001; Changed records 0; Deleted records 0
    Data pkgs 000036; Added records 10,001; Changed records 0; Deleted records 0

    Hi Fong,
    The settings for 'no of data records' specifies how many records should be transfered in a data package to BW for processing .
    However added records specifies how many records of that data package actually loaded to your data target .
    This may be because of
    1.Key fields:  Your key field settings may lead to elimination of any duplicate records
    2.Update rule: Your update rule may have some filteration of records.
    Hope this makes you clear.
    Regards,
    Prema

  • Memory overflow problems when processing huge XML files

    Hi All,
    We are in need of processing very large XML file.(more than 100MB)..
    We ran this job in background and it resulted in runtime errors.
    Is there any way of processing this file as a whole?
    Edited by: Thomas Zloch on Nov 17, 2010 4:16 PM - subject adjusted

    Normally such memory problems can be avoided by using block processing and clearing tempory data inbetween the blocks. However all XML techniques that I know (DOM, XSLT, ST) require all data to reside in an internal table at once. I will be facing a similar problem soon, so I'm quite interested in a solution.
    One way would be to upgrade the hardware and allow more memory to be allocated to the workprocess (system administration). Some background information:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/49/32eb1fe92e3504e10000000a421937/frameset.htm
    I wonder if there are other workarounds, let's see if there will be additional replies.
    Thomas

  • Problem when create customs BP number through PCUI

    Hi Experts,
    we are working on CRM 5.0 & EP7.0
    i have created custom function module (z function module) for generate the customs BP number( Dep country ,region) for BP t-code in GUI (CRM) System , when test through PCUI i can not get the PCUI field values like counry , region....so i cant generate the custom BP number depend upon the country and region,
    when user type the country,region,company name,city in PCUI
    how can i get PCUI field values ( country,region,company name,city)
    in GUI (SAP- CRM) System.
    PCUI field values ( country,region,company name,city) is not stored in ABAP memory, like
    1. CALL FUNCTION 'BUP_BUPA_MEMORY_GET_ALL'
    TABLES
    t_but000 = t_but000
    t_but001 = t_but001
    t_but0bk = t_but0bk
    t_but100 = t_but100
    t_but0cc = t_but0cc
    t_but0is = t_but0is
    t_but0id = t_but0id.
    2. CALL FUNCTION 'BUA_BUPA_ADDRESSES_GET'
    EXPORTING
    i_xall = 'X'
    TABLES
    t_address = t_add.
    this two function modules are not giving values when user enter the values in PCUI
    plz help me........
    thanks,
    Ganesh,R

    hi karthik,
    i am working in CRM 5.0 ,& PCUI
    i have created custom BP number depend upon country and region ( through PCUI ), it is working fine but when more then one user trying to create account( BP) by uing same country and region it is generating same BP number becoz they are press ENTER button after giving the input data in PCUI , if they press SAVE button it is creating new BP number.
    when user press enter button countron should not go to BP number generation coding..how can i do this?
    How can i identify user press ENTER button or SAVE Button?
    where event is trigring ?where they are calling the Events?
    i want to do when user press ENTER button it should not create BP number but user press SAVE button it should create BP number..
    how they are linking PCUI & SAP CRM-GUI?
    how can i do this ? plz help me..
    Thanks,

  • Problem when create the BP number through PCUI

    Hi Experts,
                      we are working on CRM 5.0 & EP7.0
                      i have created custom function module (z function module) for generate the customs BP number( Dep country ,region)  for BP t-code in GUI (CRM) System , when test  through PCUI i can not get the PCUI field values like counry , region....so i cant generate the custom BP number depend upon the country and region,
                      when user type the country,region,company name,city in PCUI
                      how can i get PCUI field values ( country,region,company name,city)
                      in GUI (SAP- CRM) System.
                     PCUI field values ( country,region,company name,city) is not stored in ABAP memory, like 
                          1.  CALL FUNCTION 'BUP_BUPA_MEMORY_GET_ALL'
                                     TABLES
                                        t_but000 = t_but000
                                        t_but001 = t_but001
                                        t_but0bk = t_but0bk
                                        t_but100 = t_but100
                                        t_but0cc = t_but0cc
                                        t_but0is = t_but0is
                                         t_but0id = t_but0id.
                           2. CALL FUNCTION 'BUA_BUPA_ADDRESSES_GET'
                                  EXPORTING
                                     i_xall    = 'X'
                                 TABLES
                                    t_address = t_add.
    this two function modules are not giving values when user enter the values in PCUI
    thanks,
    Ganesh,R

    hi karthik,
    i am working in CRM 5.0 ,& PCUI
    i have created custom BP number depend upon country and region ( through PCUI ), it is working fine but when more then one user trying to create account( BP) by uing same country and region it is generating same BP number becoz they are press ENTER button after giving the input data in PCUI , if they press SAVE button it is creating new BP number.
    when user press enter button countron should not go to BP number generation coding..how can i do this?
    How can i identify user press ENTER button or SAVE Button?
    where event is trigring ?where they are calling the Events?
    i want to do when user press ENTER button it should not create BP number but user press SAVE button it should create BP number..
    how they are linking PCUI & SAP CRM-GUI?
    how can i do this ? plz help me..
    Thanks,

  • Problem when create custom BP number through PCUI

    Hi Experts,
    we are working on CRM 5.0 & EP7.0
    i have created custom function module (z function module) for generate the customs BP number( Dep country ,region) for BP t-code in GUI (CRM) System , when test through PCUI i can not get the PCUI field values like counry , region....so i cant generate the custom BP number depend upon the country and region,
    when user type the country,region,company name,city in PCUI
    how can i get PCUI field values ( country,region,company name,city)
    in GUI (SAP- CRM) System.
    PCUI field values ( country,region,company name,city) is not stored in ABAP memory, like
    1. CALL FUNCTION 'BUP_BUPA_MEMORY_GET_ALL'
    TABLES
    t_but000 = t_but000
    t_but001 = t_but001
    t_but0bk = t_but0bk
    t_but100 = t_but100
    t_but0cc = t_but0cc
    t_but0is = t_but0is
    t_but0id = t_but0id.
    2. CALL FUNCTION 'BUA_BUPA_ADDRESSES_GET'
    EXPORTING
    i_xall = 'X'
    TABLES
    t_address = t_add.
    this two function modules are not giving values when user enter the values in PCUI
    plz help me
    thanks,
    Ganesh,R

    hi karthik,
    i am working in CRM 5.0 ,& PCUI
    i have created custom BP number depend upon country and region ( through PCUI ), it is working fine but when more then one user trying to create account( BP) by uing same country and region it is generating same BP number becoz they are press ENTER button after giving the input data in PCUI , if they press SAVE button it is creating new BP number.
    when user press enter button countron should not go to BP number generation coding..how can i do this?
    How can i identify user press ENTER button or SAVE Button?
    where event is trigring ?where they are calling the Events?
    i want to do when user press ENTER button it should not create BP number but user press SAVE button it should create BP number..
    how they are linking PCUI & SAP CRM-GUI?
    how can i do this ? plz help me..
    Thanks,

  • Re: i have problem when i call any number

    I am facing exactly the same problem for about a year now!

    Hello and welcome to the Skype Community.
    Your issue is totally different. The problem here is with the call terminator in Hungary who is unable to connect to the cellphone #s you are calling. We will investigate why this is happening. Thanks for raising it.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Problem when trying to refresh oracle screens with latest data

    hello experts,
    i have one problem,i want to refresh the oracle screen with the latest data from the data
    base.
    It is a two stage process.At first step one user will select a row from the screen and then he will press a button .
    now the second screen will appear and the detail of the employee will be displayed.
    First step has been completed and the data is coming in the second form via parameters and i can see the full information of the employee.
    Now i want to refresh the oracle form i.e. suppose if my dba has made any changes in the oracle table( EMP table) i want that after pressing the refresh button user can see the
    latest data from the database.
    in WHEN_BUTTON_PRESSED trigger i have written this codes.
    enter_query;
    execute_query;
    but they are not giving the expected result.
    And one more thing please suggest whether in the second form i should use database item
    or non database item.
    When i am using database item when i am trying to close second from one pop up is appearing
    and asking that whether i want to save the changes.
    please suggest how can i remove this message from my application.
    Regards
    Anutosh

    Hi,
    what data did you transfer via parameters to the second form ?
    how did you populate the datablock in the second form ?
    Typical solution would be:
    (For my example the block is both forms is named EMP, and is based on the table SCOTT.EMP)
    In Form 1, transfer the primary key-value of the current record to a global or parameter (will use global in my example):
    e.g. you have a WHEN-BUTTON-PRESSED-Trigger with the following code:
    <pre>
    :GLOBAL.EMPNO:=:EMP.EMPNO;
    CALL_FORM('FORM2');
    </pre>
    In Form 2, you have a WHEN-NEW-FORM-INSTANCE-Trigger with code:
    <pre>
    DEFAULT_VALUE('GLOBAL.EMPNO', NULL);
    IF :GLOBAL.EMPNO IS NOT NULL THEN
    GO_BLOCK('EMP');
    EXECUTE_QUERY;
    :GLOBAL.EMPNO:=NULL;
    END IF;
    </pre>
    On block EMP in Form 2 there is a PRE-QUERY-Trigger with following code:
    <pre>
    IF :GLOBAL.EMPNO IS NOT NULL THEN
    :EMP.EMPNO:=:GLOBAL.EMPNO;
    END IF;
    </pre>
    And at last, in your refresh-button would be the following code:
    <pre>
    :GLOBAL.EMPNO:=:EMP.EMPNO;
    GO_BLOCK('EMP');
    EXECUTE_QUERY;
    :GLOBAL.EMPNO:=NULL;
    </pre>
    Hope this helps

  • Problem when updating af:table with new records

    Hi,
    I have a page that shows two tables from the same DB table but with different VOs.
    Table1 displays records where date_column is within the current month, table2 displays all records.
    The problem is that when I add new record and return to the page, I find out that the new record has been added to both tables, it’s shown in table1 even though its date is not within this month.
    When I run the page again the problem is solved and everything is in the right place !!
    How can I fix this?

    Hi,
    you will have to re-query the iterators because you add the new row to a VO - which is an iterator - that wont filter your input (instead you add to a filtered iterator). However, its strange that both tables show that value because if these are different VO they should be independent. Only if they are instances of the same VO tehy are expected to show the same data
    Frank

  • Processing of large number of records using JDBC Sender Channel

    Hi experts,
    We have a JDBC-File scenario where in the tables contain about 500K records on an average.
    I used multimapping to generate a flat file for every 10K. The problem is ..when I start the JDBC Sender CC, the memory goes up and the J2EE engine restarts. In the Sender CC, I gave the Disconnect from the database option too. The query is SELECT * from TABLE and the Update statement is <TEST>. Please help me out how to solve this.
    Regards.

    Hi
    Use the below query,
    // Oracle
    SELECT Statement :      select colname from tblname where rownum<=1000 ;
    // MSSQL
    select top 1000 colname from tblname
    Regards
    Ramg

  • System.ArgumentException: Illegal characters in path. When Processing More than 1 lakh records.

    Hi ALL,
    I am Having a trouble with processing the files using c# language. as it's giving the error saying that Illegal character into the path.
    although i am using below regular expression for checking and removing the illegal character by another method.
    Regex pattern = new Regex("\\/:*?\"<>|");
    Some of the records are being processed correctly  that means , records are being fetched from the database and written to the file system correctly by using BinaryWriter class.
    Can anybody help me for this error to resolve.
    Note:- There are more than 1 lakh records to be processed.

    Hi Michael Taylor,
    I have used the log4net to catch the errors while my loop was 
    continuing till the end of the processing of those many records.
    Also System.IO.Path.GetFileName(filename) was throwing the error ,
    so i have check the filename with regular expression and replace illegal character from there and then 
    call the System.IO.Path.GetFileName(filename) method.
    i have use Regex illegalInFileName = new Regex(@"[\\/:*?""<>|]");
    this regular expression to replace illegal character.

  • White screen when processing RAW

    Hi, since installing 10.5, I have a problem when processing RAW files from my Pentax K10d. If I press the 'enhance' button, or attempt to sharpen, the photo disappears. The only way to get it back is to reprocess the RAW file. I have rebuilt the library, thumbnails etc by pressing apple+alt on iPhoto startup. I have also used BatChmod on the iPhoto library.
    Could anybody please help me, as I am really cheesed off

    I am not sure if this is directly linked to 10.5 because as soon as I installed iLife 08 I had this same issue on Tiger. I have also done a clean install of 10.5 and iLife 08 done all the updates and still have this issue...
    None of the fixes has solved this and my pictures are Nikon RAW - very annoying...

  • Authorization problem when displaying icons in BW Report

    Hi All
    I have the following problem when display BW Report as iView: The report data itself is displayed perfectly but to display the icons (like DrillDown arrows, Hierarhy level open arrows) the Windows login message "Connect to <my BW server.com>:8000" appears and I have to enter BW user name and password explicitly. The system for BW is defined, the user is mapped, UIDPW method is used. Again, the report data itself is displayed, the problem is only with icons. I can see that the path to icons is like:
    http://<my BW server>.com:8000/sap/bw/Mime/BEx/Icons/s_b_up.gif
    How could I rid of this authorization request?

    Thanks! I already did this and it helped for most of icons. But for five remaining icons i still get authorization request althoug these icons are in the same path. The icons are:
    http://<server>.com/sap/bw/Mime/BEx/Icons/cascading.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/checked.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/separator.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/marked_right_35.gif
    http://<server>.com/sap/bw/Mime/BEx/Icons/loading.gif

Maybe you are looking for

  • Syncing the ipod touch

    SO i was trying to update my touch today and it stopped halfway through and a pop up said that "this computer is no longer autherized to play purchased items on the Ipod "XXX" WOuld you like to autherize it?" I and after i autherized the computer it

  • Please HELP me with getting the right version of Adventure Works database

    Hi, I have SQL SERVER 2008 R2 installed with me. And i have downloaded 'AdventureWorks2008R2_Database' from msdn links only. It is running fine.  Now the practise material i have with me is where employee table have columns precisely as in this link

  • Parked Invoices - Workflow Issue

    Hi All, We have an issue with posting of parked invoices. A particular invoice has been released from workflow. Even in the workflow control of parked inovices, all the 3 check boxes are marked. However, the invoice still appears as a Parked invoice

  • Loading side per side

    Hi there, I am currently building a captivate file, which is supposed to have 3 min. speach on each slide. Loading this sometimes makes the sound already play, while the movie is not shown, plus the full project ends up with 70 MB. To cut this down w

  • Easiest way to change font size/color with CSS?

    I've never used CSS before; I need to know how to change the font size and color using CSS, since it seems to be the only way to do it now. Sometimes I just need to change the font just for a few words, or a line here and there. Not necessarily page-