Data mismatch between 10g and 11g.

Hi
We recently upgraded OBIEE to 11.1.1.6.0 from 10.1.3.4.0. While testing we found data mismatch between 10g and 11g in-case of few reports which are including a front end calculated column with division included in it, say for example ("- Paycheck"."Earnings" / COUNT(DISTINCT "- Pay"."Check Date")) / 25.
The data is matching for the below scenarios.
1) When the column is removed from both 10g and 11g.
2) When the aggregation rule is set to either "Sum or Count" in both 10g and 11g.
It would be very helpful and greatly appreciated if any workaround/pointers to solve this issue is provided.
Thanks

jfedynic wrote:
The 10g and 11.1.0.7 Databases are currently set to AL32UTF8.
In each database there is a VARCHAR2 field used to store data, but not specifically AL32UTF8 data but encrypted data.
Using the 10g Client to connect to either the 10g database or 11g database it works fine.
Using the 11.1.0.7 Client to go against either the 10g or 11g database and it produces the error: ORA-29275: partial multibyte character
What has changed?
Was it considered a Bug in 10g because it allowed this behavior and now 11g is operating correctly?
29275, 00000, "partial multibyte character"
// *Cause:  The requested read operation could not complete because a partial
//          multibyte character was found at the end of the input.
// *Action: Ensure that the complete multibyte character is sent from the
//          remote server and retry the operation. Or read the partial
//          multibyte character as RAW.It appears to me a bug got fixed.

Similar Messages

  • Changes to data verification between 10g and 11g Clients

    The 10g and 11.1.0.7 Databases are currently set to AL32UTF8.
    In each database there is a VARCHAR2 field used to store data, but not specifically AL32UTF8 data but encrypted data.
    Using the 10g Client to connect to either the 10g database or 11g database it works fine.
    Using the 11.1.0.7 Client to go against either the 10g or 11g database and it produces the error: ORA-29275: partial multibyte character
    What has changed?
    Was it considered a Bug in 10g because it allowed this behavior and now 11g is operating correctly?

    jfedynic wrote:
    The 10g and 11.1.0.7 Databases are currently set to AL32UTF8.
    In each database there is a VARCHAR2 field used to store data, but not specifically AL32UTF8 data but encrypted data.
    Using the 10g Client to connect to either the 10g database or 11g database it works fine.
    Using the 11.1.0.7 Client to go against either the 10g or 11g database and it produces the error: ORA-29275: partial multibyte character
    What has changed?
    Was it considered a Bug in 10g because it allowed this behavior and now 11g is operating correctly?
    29275, 00000, "partial multibyte character"
    // *Cause:  The requested read operation could not complete because a partial
    //          multibyte character was found at the end of the input.
    // *Action: Ensure that the complete multibyte character is sent from the
    //          remote server and retry the operation. Or read the partial
    //          multibyte character as RAW.It appears to me a bug got fixed.

  • How to join three tables and practical difference between 10g and 11g

    I want to know with example how to outer join three different tables in Oracle.
    Also if you have any website or reference for understand syntax or performance difference between 10g and 11g then please paste a link in.thanks!!

    Hi,
    897293 wrote:
    I want to know with example how to outer join three different tables in Oracle.The 3rd table comes into the result set the same way the 2nd one did:
    FROM           table_1  t1
    LEFT OUTER JOIN      table_2  t2  ON   ...
    LEFT OUTER JOIN      table_3  t3  ON   ...The join condition(s) for t3 can reference t1, or t2, or both.
    Also if you have any website or reference for understand syntax or performance difference between 10g and 11g then please paste a link in.thanks!!The main manuals all have "What's New" sections near the beginning. For example:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/wnsql.htm#sthref5
    Hoek,
    We've missed you. Welcome back!

  • NVL in view: discrepancy between 10G and 11G

    Hi,
    I've discovered some discrepancy between 10G and 11G in a way how view deals with NVL-based column in a where clause.
    Here are two examples:
    *10G:*
    Connected to:
    Oracle Database 10g Release 10.2.0.4.0 - Production
    SQL> create table test_nvl (null_column number);
    Table created.
    SQL> insert into test_nvl values (null);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> create view view_nvl as select nvl(null_column,0) null_column from test_nvl;
    View created.
    SQL> select * from view_nvl where null_column is not null and null_column = 0;
    NULL_COLUMN
    0
    *11G*
    Connected to:
    Oracle Database 11g Release 11.2.0.1.0 - 64bit Production
    SQL> create table test_nvl (null_column number);
    Table created.
    SQL> insert into test_nvl values (null);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> create view view_nvl as select nvl(null_column,0) null_column from test_nvl;
    View created.
    SQL> select * from view_nvl where null_column is not null and null_column = 0;
    no rows selected
    Does anyone know why it behaves differently?
    I couldn't find any documentation regarding this.
    Or I'm just missing something here.
    Thanks

    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE     11.2.0.2.0     Production
    TNS for HPUX: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    CREATE TABLE test_nvl (null_column NUMBER);
    INSERT INTO test_nvl
         VALUES (NULL);
    COMMIT;
    CREATE VIEW view_nvl
    AS
       SELECT NVL (null_column, 0) null_column FROM test_nvl;
    SELECT *
      FROM view_nvl
    WHERE null_column IS NOT NULL AND null_column = 0;
    NULL_COLUMN
    0

  • Is there any difference between 10g and 11g M Views?

    Hi,
    I need to give a demo on and working examples of materialized views. The requirement is this: Master tables are in a 10g R2 DB, MV is in a 11g.
    I just create a DB Link in 11g to point to the 10g DB and then create the MV in 11g.
    Will there be any problems creating a 11g MV using 10 Master tables?
    My question is are there any significant differences between 10g and 11g MViews??
    Thanks & Regards,
    Channa.

    You have to be careful about your versions. 10g could be 10.1 or 10.2 11g could be 11.1 or 11.2
    I wouldn't have an 11.2 database with a database link against a 10.1 database.
    In fact, even with 10.2, I would try to ensure that I have a "high patchset" (10.2.0.4 or 10.2.0.5) although, in theory, 10.2.0.1 should also work.
    See Oracle Support article
    Client / Server / Interoperability Support Between Different Oracle Versions [ID 207303.1]
    Hemant K Chitale

  • Difference between 10g and 11g OEM

    Hi,
    I would like to know what is the difference between 10g and 11g Grid control. Unfortunately I have worked only on 11g Grid Control. So do not not what exactly are the differences like from GUI features,installation steps.
    Thank you....

    Hi,
    From 11g grid Weblogic also introduced. You can refer this below note for understanding even architecture.
    *Understanding the Enterprise Manager 10g and 11g Grid Control Management Agent, Directory Structure and Key Configuration Files. [ID 234872.1]*

  • Issue with RN messages between 10g and 11g

    Hi All,
    We are facing some issues for RN messages;
    We have configured Rosettanet Actions on both 10G and 11G . In 11G we have the RNTP (remote trading partner) in 10G we have host. The messages posted from host(10g) are not reaching the 11g remote TP, but failing due to the below errors;
    <29-Aug-2012 14:47:07 o'clock IST> <Error> <oracle.soa.b2b.engine> <BEA-000000> <B2B Label:PCBPEL_11.1.1.6.0_GENERIC_111
    214.0600.1553: java.lang.NullPointerException
    at oracle.tip.b2b.exchange.rnif11.RNExchangePlugin.decodeIncomingMessage(RNExchangePlugin.java:212)
    at oracle.tip.b2b.exchange.rnif11.RNExchangePlugin.decodeIncomingMessage(RNExchangePlugin.java:582)
    at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:1919)
    at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1650)
    at oracle.tip.b2b.engine.Engine.incomingContinueProcess(Engine.java:4042)
    at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3718)
    at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3205)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:677)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:211)
    at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
    at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:184)
    at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Could anyone help us on this issue?
    Regards,
    Raj

    Hi Dheeraj ,
    1. With Both 10G we are getting the below error with Rosettanent Exchange Protocol Version 01.10 :
    Description: An unexpected error occurred during validation
    StackTrace:
    Error -: AIP-51505: General Validation Error: Error -: AIP-51505: General Validation Error: oracle.xml.parser.schema.XSDException
    at oracle.tip.adapter.b2b.document.rn20.RNDocumentPlugin.processIncomingDocument(RNDocumentPlugin.java:163)
    at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:1927)
    at oracle.tip.adapter.b2b.engine.Engine.incomingContinueProcess(Engine.java:2617)
    at oracle.tip.adapter.b2b.engine.Engine.handleMessageEvent(Engine.java:2487)
    at oracle.tip.adapter.b2b.engine.Engine.processEvents(Engine.java:2442)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:527)
    at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:374)
    at java.lang.Thread.run(Thread.java:534)
    However , when we changed the Exchange Protocol Version to V02.00 we got the below error :
    Machine Info: (APT3VW03)
    Description: B2B adapter general error
    StackTrace:
    Error -: AIP-50031: B2B adapter general error: Error -: AIP-50025: Repository error : Error -: AIP-50547: Trading partner agreement not found for the given input values: From party[NAME] "null", To party[NAME] "null", Business action name "RequestPurchaseOrderAction"; also verify agreement effectiveToDate
    at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:2006)
    at oracle.tip.adapter.b2b.engine.Engine.incomingContinueProcess(Engine.java:2617)
    at oracle.tip.adapter.b2b.engine.Engine.handleMessageEvent(Engine.java:2487)
    at oracle.tip.adapter.b2b.engine.Engine.processEvents(Engine.java:2442)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:527)
    at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:374)
    at java.lang.Thread.run(Thread.java:534)
    2. With both 11G Environments we are getting the below error (Exchange Protocol Version 01.10):
    <05-Sep-2012 13:49:36 o'clock IST> <Error> <oracle.soa.b2b.engine> <BEA-000000> <B2B Label:PCBPEL_11.1.1.6.0_GENERIC_111
    214.0600.1553: java.lang.NullPointerException
    at oracle.tip.b2b.exchange.rnif11.RNExchangePlugin.decodeIncomingMessage(RNExchangePlugin.java:212)
    at oracle.tip.b2b.exchange.rnif11.RNExchangePlugin.decodeIncomingMessage(RNExchangePlugin.java:582)
    at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:1919)
    at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1650)
    at oracle.tip.b2b.engine.Engine.incomingContinueProcess(Engine.java:4042)
    at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3883)
    at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3205)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:677)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:211)
    at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
    at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:184)
    at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    >
    <05-Sep-2012 13:49:36 o'clock IST> <Error> <oracle.soa.b2b.engine> <BEA-000000> <java.lang.NullPointerException
    at oracle.tip.b2b.msgproc.DbAccess.insertMsgTblRowImpl(DbAccess.java:621)
    at oracle.tip.b2b.msgproc.DbAccess.insertMsgTblRow(DbAccess.java:524)
    at oracle.tip.b2b.msgproc.DbAccess.updateWireBusinessToErrorState(DbAccess.java:6241)
    at oracle.tip.b2b.engine.Engine.handleInboundException(Engine.java:5130)
    at oracle.tip.b2b.engine.Engine.handleExceptionBeforeIncomingTPA(Engine.java:5062)
    at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:1983)
    at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1650)
    at oracle.tip.b2b.engine.Engine.incomingContinueProcess(Engine.java:4042)
    at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3883)
    at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3205)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:677)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:211)
    at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
    at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:184)
    at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Regards,
    Raj

  • Physical Joins Difference Between 10G and 11G?

    Hi All, I have started using OBIEE 11G. Anybody please let me know is there any difference in applying physical joins in OBIEE 10G and 11G.
    I heard that we need to join Fact and Dim tables in reverse way in 11G.
    Thanks in Advance.

    # Fast-Start Failover for Maximum Performance Mode in a Data Guard Configuration
    # Compression of Redo Traffic (Only for Gap Resolution) Over the Network in a Data Guard Configuration
    # Real-Time Query Capability of Physical Standby Database
    # Fast Role Transitions in a Data Guard Configuration
    # Data Guard Integration, Simplification, and Performance
    # Dynamic Setting of Oracle Data Guard SQL Apply Parameters
    # Enhanced Data Guard Broker Based Management Framework
    # Histogram for Redo Transport Response Time in a Data Guard Configuration
    # Snapshot Standby
    # Strong Authentication for Data Guard Redo Transport
    # Enhanced DDL Handling in Oracle Data Guard SQL Apply
    # Enhanced Oracle RAC Switchover Support for Logical Standby Databases
    # Data Guard Logical Apply Completeness
    # Oracle Scheduler Support in Data Guard SQL Apply
    # Support Transparent Data Encryption (TDE) with Data Guard SQL Apply
    # Support XMLType Data Type (Only CLOB) in Data Guard SQL Apply
    # Virtual Private Database (VPD) Support in Data Guard SQL Apply
    See Also:
    Oracle Data Guard Concepts and Administration for details
    Ref. Oracle® Database New Features Guide
    11g Release 1 (11.1)
    Part Number B28279-01
    ~ Madrid

  • Data Mismatch between ODS and Infocube

    Hi,
    I have got data mismatch between from ODS to Infocube. In ODS for one Sender Cost Centre, there is only one Company Code. In Infocube it is showing many.For ODS datasource is 0HR_PT_1. In Updaterules of ODS, Company Code was assigned to Company Code. But in Infocube should  I assign CompCode to Comp Code or any other Characteristic as Master Data Attr of. Plz suggest us.
    It is very urgent.

    post ur  BW related querures in BW forum

  • Data mismatch between TABLE and Std. Extract str. (AFPO & 2LIS_04_P_MATNR)

    Hi,
    I am getting data mismatch in ECC standard table and ECC standard extract structure. Please help me.
    I am using 2LIS_04_P_P_MATNR data source (standard extract structure).
    <b>I have following data in ECC Table (AFPO - Order Item).</b>
    AUFNR (Order Number) --> 4000460
    PGMNG (Total planned quantity)  --> 0
    PSMNG (ORDER QTY) --> 2000
    <b>Extract Structure is showing following data.</b>
    AUFNR (Order Number) --> 4000460
    PGMNG (Total planned quantity)  --> 2000 (It should be zero)
    PSMNG (ORDER QTY) --> 2000
    I have checked with many other order numbers. <b>The extract structure in RSA3 is showing correct values only if PGMNG is non-zero values. If PGMNG is zero, then it is automatically assigning PSMNG value.</b>
    Is this common? I want to display correct values for PGMNG from AFPO Table. Why this mismatch between table data and extract data. I have done  all required steps refreshing data (deleting setup tables, filling set up tables etc.).
    pls suggest. Poinsts will be assigned to every useful answer.
    Thanks in advance.

    Hi Avneet,
    I have a similar problem where in AFPO shows value 1000 in PSMNG field and 1200 in RSA3 for extractor 2LIS_04_P_MATNR.
    I have found that the standard feature of the extractor extracts the data at the time of release of process order. If the process order is changed after the release then the extractor will not picup the chagne.
    Ex: AFPO value 1000 ---BI Value 1000
    Now released in ECC
    AFPO value 1000 ---BI Value 1000
    In ECC value changed to 1500 after the release. BI will not pickup the change.
    Extractor is pulling the data from MCAFPOV table. You can check the values, there it matches with RSA3 values.
    I was just going thru forums for the solution. After i found the solution. I am just updating it.
    Hope it helps you.
    Thaks
    Srikanth

  • PPDS production order dates mismatch between APO and R3

    Hi Friends,
    We are facing one problem regarding production order date mish match between R3 and APO systems specific to a product.
    The product is planned in PPDS and the order automatically transfer to R3 through online CIF.
    PPM has got two operations 0010 and 0020 and activity relationships are like this:
    P(0010) - P(0020) Start - Start relation ship
    S(0010) - P(0010) End - Start relationship.
    In PPDS dates are shown as :
    on operation 0010 the start/end  dates are shown as  08.15.09 to 08.22.09
    on operation 0020 the start/end  dates are shown as 08.15.09 to 08.22.09
    Overall order start date is  08.15.09
    Overall order finish date is 08.22.09
    and in R3 dates are shown as:
    on operation 0010 the start/end  date are shown as  08.15.09 to 08.22.09
    on operation 0020 the start/end dates are shown as 08.22.09 to 08.29.09
    Overall order start date is  08.15.09
    Overall order finish date is 08.29.09
    The order is off one week (APO vs R3) with start and finish dates.  
    if we change DS Board settings to ignore internal relationships manually then the dates are matching exactly in APO and R3.
    We want the production order dates to be matched without manual intervention.
    Could some one please provide some hints on what is happening here and how to correct it.
    Thanks.
    Krish

    Hi Friends,
    Thanks a lot for your valuable replies in this regard.
    Actually this problem is in production environment and it took some time to test the problem with the master data modifications
    you suggested.
    As DB and Siddhrath mentioned, the problem was with routing definition. There is no parallel sequence maintained in the routing but there is start-start relation maintained in APO PPM.
    We corrected the routing definition and checked the order dates. Now the dates  are matching in R3 and APO.
    I am awarding DB and Siddharth each five points in this regard.
    Once again thank you all for your time and valuable replies.
    -Regards
    Krish.

  • Data mismatch between dashboard and bw report

    Hi expert,
    Data is mismatchin between dashboard and BW report of .I am using SAP BW connection ,
    Dashboard screen shot
    BW Query output
    What is the issue can you please suggest...

    Hi Ganapathy,
    Please check the Prompt filter and Variables which you are passing to get the output in Dashboard and BW.
    It seems that some filters are missing in dashboard.
    Thanks
    Arvind Shukla

  • ROW_NUMBER differences between 10g and 11g

    Hi and apologies if this has been previously answered, I searched but could not find a relevant answer.
    I have a simple table: X
    Address Entity Source
    13534780 547045234 A
    5903573 547045234 A
    9805116 582004049 A
    9808958 582004049 A
    6429371 583032305 A
    6669148 583032305 A
    When I run the following SQL:
    select Address,Entity,row_number() over (partition by Entity order by Source) as RN from X;
    Oracle 10g yields:
    Address Entity RN
    5903573 547045234 1
    13534780 547045234 2
    9805116 582004049 1
    9808958 582004049 2
    6429371 583032305 1
    6669148 583032305 2
    whereas 11g yields:
    Address Entity RN
    13534780 547045234 1
    5903573 547045234 2
    9808958 582004049 1
    9805116 582004049 2
    6669148 583032305 1
    6429371 583032305 2
    If I repeat these runs , they are always consistent within each version of the database which is what I would expect.
    Is this due solely to the order the table rows have been loaded and how can I within the query ensure parity between the two versions.
    Thanks.
    Edited by: User909022 on 21-Jun-2012 03:31

    Is this due solely to the order the table rows have been loaded No.
    Rows are inserted in no particular order.
    Use an ORDER BY if you want/need ordered data.
    Something like
    select address
    ,      entity
    ,      row_number() over (partition by entity order by source) as rn
    from   x
    order by whatever_column_you_need;"Do not ever count on the order of rows from a query unless you have an ORDER BY statement on your query!"
    http://tkyte.blogspot.nl/2005/08/order-in-court.html

  • Differences between 10g and 11g

    Greetings to all,
    I am a student who was directed to this site to download Oracle 11g express edition release 2 and Oracle SQL developer 3.1 for class. However, I found only the 10g express edition to be compatible with my OS. I was told I could probably use this but was warned that my certification test would be in 11g. May I get some experienced opinions on if this would be a wise choice? What are the primary differences between the two?
    Thanks in advance.

    May I get some experienced opinions on if this would be a wise choice?It depends on the scope of the certification test. For basic SQL certification, either is probably OK. For a DBA certification that covers features only available in Standard or Enterprise Edition, or features added in 11g, you need the appropriate version.
    What are the primary differences between the two? 10g XE vs 11g XE differences:
    http://docs.oracle.com/cd/E17781_01/admin.112/e18585/toc.htm#BJFEIJGJ
    11g Edition differences:
    http://www.oracle.com/us/products/database/enterprise-edition/comparisons/index.html

  • Data mismatching between BW and R/3

    Hi BW Experts,
    We uploaded Profit Center Accounting Data (It is a Part of CONTROLLING) on 10-04-2008.
    And we run the delta daily, it is running fine....
    Yesterday we checked the data for one GL Account in both R/3 and BW Systems, but data is not matching.
    There are 4 line items (4 Different Amounts) in R/3 side, but we got only 3 line items (3 Amounts) in BW side.
    One amount (line item) was missed.
    How can i get the missing value in BW side.
    We are not using ODS...
    It is very urgent.
    PLease can anyone tell me the solution.
    Regards
    Anjali

    You should do the following checks:-
    1. RSA3 - Extractor Checker
    2. RSA7 - Delta Queue Monitoring - to check what is entering the delta queue
    (hopefully these would be ok, if there are not much customisations etc..)
    3. PSA - Check if there are any selection conditions stopping data from coming to PSA, If you find all data here perfect, then there has to be some issue with the staging etc.
    4. If you are on Bi7.0, switch on the temp. storage and then execute your DTP, so that you can check the processing by record.. also check the DTP filters - which might be stopping some data to be processed.
    5. Transformation (transfer rules/update rules) - Check for some routines - start routines, end routines which may stop some data to be processed.
    6. Last but not the least, you should also check if there is some aggregation that happens in the cube which stops you from seeing the data distinctly.
    Hope this helps.
    Cheers,
    Sumit

Maybe you are looking for

  • Got a problem with K7N2G-L

    the problem is the MB doesn't seem to be disabling the onboard video like it should when i attach an expansion card into the agp slot (using an MSI G4MX-TD8X).  i've tried everything i can think of to get the dang thing to post... or at least show it

  • SSIS 2012 - Importing multiple files with different columns (where columns are stored in a table)

    Hi everyone, I have been tasked to upgrade an existing DTS package into an SSIS package. The old package uses 3 tables. Table 1) Has a list of file names Table 2) Has a list of columns per file Table 3) Is the data destination. So what is supposed to

  • Autocomplete In SAP (How to Turn ON)

    Hi, I want to turn on the auto complete for any Input fields in SAP accessed thru my desktop PC. I have checked, 1. Low speed connection tick is OFF 2. In options-> Local Data -> History is ON 3. the control menu in SAP log on pad 4. I have uninstall

  • Wireless roaming best practice

    When setting up standalone access points on the same SSID is it best to use multiple channels that do not overlap (ie 1,6 and 11) or use the same channel for every access point? We have 1 SSID in our office spread over 3 access points and currently I

  • Time zone setting

    I can't seem to locate a time zone setting for Adelaide South Australia on my nano. It's available as a city on the clock but not for me to select as my time zone...am i missing something here!?! Cheers, Neil