Db link not appended to table name

Hi
I have no DB link appended to table name in generated
code when I try to deploy mapping.
i'm using ODBC source. Object metadata imported
succefully and valid DB link created.
the code i get is like this:
CURSOR "managers_c" IS
SELECT
"managers_CONN1"."key_mn" "key_mn",
"managers_CONN1"."name_mn" "name_mn",
ROWNUM "ROWNUM_ALIAS$$$"
FROM "tst"."managers" "managers_CONN1" ;
I'm using OWB 9.0.4 and Oracle 9iR2 9.2.0.3 on W2K sp3
thanks

I would also be interested in the correct way to do this. I think I came up with a work-around, but either there is another way to do this, or there is a bug here.
Work-around:
This assumes you've already setup a HS ODBC datasource (Listener, TNSNames, ODBC driver, and config file.)
Now....when registering your HS ODBC source module in OWB, put in the correct information to make the database link "correct". For instance, the hostname/port should be configured to point to the Oracle instance where the HS ODBC source was setup and the service name should be the name already setup in your TNSNames.ora file for the HS ODBC source.
When you deploy your target module, this will create a correct DB Link and store it in the target schema you deployed to.
At this point however, your generated PL/SQL mapping code will not be correct, because the dbLink name is not appended to your sql statements.
Now, go back and change your source module registration. Change the hostname to be the server name of the actual source database. Change the schema name also to be the schema in the source database. For instance in sql server you might put "dbo" as the schema. I don't think the other input fields matter that much for this workaround.
Now that you've changed the registration, re-deploy your mapping (but don't re-deploy the "connection" which has your changed registration info.) Now that your registration has a different hostname, the code generator will realize it needs to append the dbLink name to the sql statements. Likewise it appends the schema name ("dbo") to the front since the source and target are in different schemas.
Your deployment should succeed and be executable. Like I said, this worked for me, but it doesn't seem the correct way to do it. If anyone has the right answer, please advise.
Regards,
Dave

Similar Messages

  • Create Unique Index On Flow does not work for table names 23 characters

    I have a "create unique index on flow table" step that is dynamically generated by the IKM.
    The index name that is generated by the IKM is based on the table name except that the created index name is prefixed with "I$_" and ends with "_idx". Obviously, since Oracle table names can not exceed 30 characters in length, the index creation step will fail if the base table name exceeds 23 characters.
    I have tried to substring the index name generation step in the IKM so that it only uses the first 23 characters of the table name, but have not had any luck with using the "substring" command together with snpRef.getTable call.
    This is the section of the IKM that I desire to change:
    - <Field name="Txt" type="java.lang.String">
    - <![CDATA[
    create unique index      <%=snpRef.getTable("L","INT_NAME","W")%>_idx
    on          <%=snpRef.getTable("L","INT_NAME","W")%> (<%=snpRef.getColList("", "[COL_NAME]", ", ", "", "UK")%>)
    <%=snpRef.getUserExit("FLOW_TABLE_OPTIONS")%>
    ]]>
    </Field>
    I would like to change the above to something similar to the following (note the only change is the addition of substring(1,23))
    - <Field name="Txt" type="java.lang.String">
    - <![CDATA[
    create unique index <%=snpRef.getTable("L","INT_NAME","W")*.substring(1,23)*%_idx
    on          <%=snpRef.getTable("L","INT_NAME","W")%> (<%=snpRef.getColList("", "[COL_NAME]", ", ", "", "UK")%>)
    <%=snpRef.getUserExit("FLOW_TABLE_OPTIONS")%>
    ]]>
    </Field>
    Any help greatly appreciated. Thanks.

    As the index is temporary, just like the I$ talbel, the easiest way is to replace the table name with some unique identifier like the session is:
    bq. I$_&lt;%=odiRef.getSession("SESS_NO")%&gt;_idx
    If for some reason that is not unique enough, add the NNO:
    bq. I$_&lt;%=odiRef.getSession("SESS_NO")%&gt;&lt;%=odiRef.getSession("NNO")%&gt; \\ _idx                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Html link not visible as table header in jsp

    Hi,
    I am not sure if this question belongs to JSP forum, since it's happening in JSP page I am posting it here.
    I am seeing this strange problem, in my JSP page all the link are looking fine except some links in Table header. Here is the code snippet:
    <th align="left" width="30%"><html:link action="/myAction.do?sortBy=org&all=${param.all}">Organization Name</html:link></th>
    ENV is struts, jstl, html.
    Now the problem is the text Organization Name is not visible, although it's there and I can click it. If I click and drag mouse over it I can see it.
    Also if I put this link anywhere else e.g. <TD> I can see it.
    I am not sure why it's happening.
    Please help me.
    Abhishek

    Sounds like a style issue - is it the same colour as the background for some reason?
    What styles have you got applied to your <th> columns? The text in them?
    Are you using css?

  • Link not visible under Table cell

    Hi,
    Following is my code but doesn't seem to work as expected.
    OABulletedListBean bullets =(OABulletedListBean)createWebBean(pageContext, OAWebBeanConstants.BULLETED_LIST_BEAN, null, "bulletList");
    OALinkBean link = (OALinkBean)createWebBean(pageContext, OAWebBeanConstants.LINK_BEAN, null, "linkEx");
    link.setDestination("OA.jsp?page=/oracle/apps/dem/employee/webui/EmpSearchPG&retainAM=Y");
    link.setText("Text of link");
    bullets.addIndexedChild(link);
    pls. point out the mistake.
    Rgds,
    Nikhil

    Hi Nikhil,
    In which method of controller you are writing this code in PR or PFR and second thing have you added your bulleted list region to table cell or not??
    Please check.
    Regards,
    Reetesh Sharma

  • Bug With Quoted Table Names?

    I think I've encountered a bug in Oracle 9.2.0.1.0. If I create table with its name in quotes, I can't access it again unless I also use the name in quotes. But, in DBA_OBJECTS the table's name shows up without quotes.
    For example:
    CREATE TABLE "avalys" (test number);
    SELECT * FROM "avalys"; --Works
    SELECT * FROM avalys; --Doesn't
    Any idea what the problem could be? Am I just not supposed to quote table names (I need to, because one of our tables is a reserved word, and unfortunately we can't change the name of the table).

    When you put quotes around a table name, you're telling Oracle to store the table name in a case-sensitive fashion, rather than the default case-insensitive fashion. When you use a non-quoted identifier, Oracle automatically upcases the whole thing and tries to resolve the name. Thus, you can do the following (not the uppercase table name in quotes)
    SQL> create table "FOO" (n1 number);
    Table created.
    SQL> select * from foo;
    no rows selected
    because "select * from foo" implicitly upcases foo. If you declare a table with some lowercase letters, i.e.
    SQL> create table "FOo" (n1 number);
    Table created.
    you'll only be able to access it with the same partially lowercase string, i.e.
    SQL> select * from "FOo"
    no rows selected
    Justin

  • Getting table name from a query

    Hi, I'm trying to get the table name from my sql query
    My code is as follows;
    ResultSetMetaData metadata = rs.getMetaData();
    for (int i = 1; i < metadata.getColumnCount(); i++)
    System.out.println(metadata.getTableName(i));
    I just get a blank output. Yet my sql query executes and I can pull down the records, and grab the column names from the result sets.
    Any ideas on how I can get the table name for the columns. The reason being is on one of my querys I'm using join statements and i need to retrieve the table name for the column i'm displaying, as some tables have similar column names.
    Thanks in advance.

    Hi,
    What db are you using?
    I also get a blank output with ResultSetMetaData.getTableName because Oracle doesn't implement this method.
    Why do you not know the table name anyway?
    regards
    Nick

  • ORA-00903: invalid table name

    I am running Toplink 9.0.3 in Oracle 9i database. I have the following code which generates an SQL statement but the table name is missing in the sub query:
    ExpressionBuilder collInventoryLines = new ExpressionBuilder();
    ExpressionBuilder maxDate = new ExpressionBuilder();
    ReportQuery subQuery = new ReportQuery(CollInventoryLines.class, maxDate);
    subQuery.addMaximum("adviceDate - max",maxDate.get("adviceDate"));
    subQuery.setSelectionCriteria(collInventoryLines.get("collPartNum").equal(orderLine.getLine().getPartNum()));
    Expression exp = (collInventoryLines.get("adviceDate").equal(collInventoryLines.subQuery(subQuery))).and
    (collInventoryLines.get("collPartNum").equal(orderLine.getLine().getPartNum()));
    ReadAllQuery qry = new ReadAllQuery (CollInventoryLines.class, exp);
    DLExpressionQuery query = new DLExpressionQuery(qry);
    query.setLock(WAIT_ON_LOCK, WAIT_TIME);
    Vector collInventoryLinesFoundVec =(Vector) ctx.executeQuery(query,true);
    This code generated the following SQL code:
    ++++++++++++++++++++++++++++++++++++
    SELECT ADVICE_DATE, COLL_QTY, &lt;other column names&gt; FROM COLLATERAL_INVENTORY_REF
    WHERE ((ADVICE_DATE = (SELECT MAX(ADVICE_DATE) FROM WHERE (COLL_PART_NUM = 'ABC1'))) AND (COLL_PART_NUM = 'ABC1'))
    ++++++++++++++++++++++++++++++++++++++++
    Note that the table name (COLLATERAL_INVENTORY_REF) is missing from the sub query.
    Any help will be appreciated.
    Thanks!

    Hi,
    Sorry for replying this late. I was assigned other tasks. The query i am using is:
    public void configureQuery(
              ReportQuery orderReportQuery,
              Object[] parameters) {
              String brand = (String) parameters[0];
              String market = (String) parameters[1];
              String modelCode = (String) parameters[2];
              String specMarket = (String) parameters[3];
    ExpressionBuilder orderBuilder = orderReportQuery.getExpressionBuilder();
    orderReportQuery.addAttribute("orderNumber",orderBuilder.get("orderNumber"));
    ExpressionBuilder specificationBuilder =new ExpressionBuilder (Specification.class);
    ReportQuery specificationSubQuery = new ReportQuery(Specification.class, specificationBuilder);
    specificationSubQuery.addMaximum(
                   "maxSpecVersionNumber",
                   specificationBuilder.get("specVersionNumber"));
    specificationSubQuery.setSelectionCriteria(specificationBuilder.getField("VISTA_ORDER_SPEC_VERS.ORDER_NO").equal(
                        orderBuilder.get("orderNumber")));
    Expression subQueryExpr = orderBuilder.subQuery(specificationSubQuery);
    Expression orderArchiveStatusExpr = orderBuilder.get("archiveStatus").equalsIgnoreCase("L");
    Expression commonOrderTypeExpr =orderBuilder.getField(
         "VISTA_ORDER.COMMON_ORDER_TYPE").equalsIgnoreCase("4");
    Expression orderBrandExpr = orderBuilder.get("brand").equalsIgnoreCase(brand);
    Expression orderMarketExpr =orderBuilder.getFiel("VISTA_ORDER.MARKET").equalsIgnoreCase(market);
    Expression orderModelCodeExpr =orderBuilder.get("modelCode").equalsIgnoreCase(modelCode);
    Expression specArchiveStatusExpr = specificationBuilder.get("archiveStatus").equalsIgnoreCase("L");
    Expression specMarketExpr = specificationBuilder.get("specMarket").equalsIgnoreCase(specMarket);
    Expression specVersionNo = specificationBuilder.get("specVersionNumber");
    Expression specVersNoMaxSpecVersNo = specVersionNo.equal(subQueryExpr);
    Expression orderCriteriaExpr = orderArchiveStatusExpr
                        .and(commonOrderTypeExpr)
                        .and(orderBrandExpr)
                        .and(orderMarketExpr)
                        .and(orderModelCodeExpr);
    Expression specificationCriteriaExpr = specArchiveStatusExpr.and(
    specMarketExpr);
    Expression selectionCriteriaExpr = orderCriteriaExpr.and (
              specificationCriteriaExpr);
    orderReportQuery.setSelectionCriteria( selectionCriteriaExpr.and(
    specVersNoMaxSpecVersNo));
    orderReportQuery.useDistinct();
    orderReportQuery.bindAllParameters();
    orderReportQuery.cacheQueryResults();
    orderReportQuery.cacheStatement();
    The SQL Statement generated bu Toplink is:
    SELECT DISTINCT t0.ORDER_NO FROM VISTA_ORDER t0, VISTA_ORDER_SPEC_VERS t1 WHERE (((((((UPPER(t0.ARCHIVE_STATUS) = 'L')
    AND (UPPER(t0.COMMON_ORDER_TYPE) = '4')) AND (UPPER(t0.BRAND) = 'SAL')) AND (UPPER(t0.MARKET) = 'UB'))
    AND (UPPER(t0.MODEL_CODE) = 'C3')) AND ((UPPER(t1.ARCHIVE_STATUS) = 'L') AND (UPPER(t1.SPEC_MARKET) = 'GBR')))
    AND (t1.SPEC_VERS_NO = (SELECT MAX(t1.SPEC_VERS_NO) FROM WHERE (t1.ORDER_NO = t0.ORDER_NO))))
    bind => [L, 4, SAL, UB, G1, L, GBR]
    The issues here are:
    1. The table name is missing i.e. VISTA_ORDER_SPEC_VERS from the sub select statement.
    2. when i add the table name to the query, it runs 200 times slower than the following query i wrote.
    SELECT distinct vo.order_no FROM VISTA_ORDER vo, VISTA_ORDER_SPEC_VERS vosv
    WHERE vo.archive_status = 'L' AND vosv.archive_status = 'L' AND vo.common_order_type = '4'
    AND vo.brand = 'SAL' AND vo.market = 'UB' AND vo.model_code = 'C3' AND vosv.spec_market = 'GBR'
    AND vo.order_no = vosv.order_no AND vosv.spec_vers_no = (SELECT MAX(z.spec_vers_no) FROM vista_order_spec_vers z WHERE vo.order_no = z.order_no)
    Message was edited by:
    boleccic

  • SQL Developer not fetching data tables while writting query

    HI , I have recently started using SQL developer 2.1, the problem i face is that SQL DEVELOPER is not showing the tables names while writting the query, we have more than 5000 tables and each table name cannot be remembered.
    Thanks
    Essa

    I'm using the Mac version of SQL Developer (Version 2.1.1.64 | Build MAIN-64.45) and I'm having similar problems. I'm currently using OS X Snow Leopard.
    The issue does not happen consistently: If I start writing an anonymous block in a new SQL window, the Completion Insight features works well. I can start typing a name of a package (of which there are many in our db) and I'm quickly provided a list matching what I've typed so far. This is also true of variables, functions and procedures within the packages after I type a period following the package name.
    However, if I open an existing package body and start editing, the Completion Insight feature becomes less reliable. If I move my cursor to the beginning of the main block of one of the package body's internal procedures, Completion Insight works. As I move down the package and try to insert new code, Completion Insight stops working. I should note that this package body I'm working with has no errors and compiles fine. I'm not sure what this indicates...whether it's an issue with the editors internal parser or some other issue.
    I'm not sure the best method for starting SQL Developer via the console window on the Mac. I found the following sh file which does launch it from terminal:
    /Applications/SQLDeveloper.app/Contents/MacOS/sqldeveloper.sh
    This does launch the application. As I navigate around and follow the instructions you had given (including ctrl-space) I see no output generated out to the console (errors or other messages).
    I'm happy to assist in further debugging. Having Completion Insight work consistently will certainly increase my productivity with the tool.
    Thanks in advance for any help you may provide.

  • Table name display in A2013

    In A2003 table names appear in the entire screen in alphabetical order whether they are local or linked.
    In A2013 table names appear in a column on the left of the screen alphabetically, but with the local tables first followed by the linked tables. Is there a way to view the tables in A2013 in the manner they were displayed in A2003?
    Thanks,
    John

    Hi John,
    Since your original issue has been resolved, if you have new issue, I would recommend you to post a new thread.
    In addition, if you have any questions about a third party, I would recommend you go to the Office Site for help.
    Thanks for your understanding.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • To Get all the Table Names

    Hi All
    I have nearly 70 procedures in my database.
    I want to get all the distinct table names used in the 70 procedures.
    Is it possible?
    Note:
    All the table names are prefixed by schema name like DEVSRC.table_name.
    Please advice
    Thanks
    Jo

    Johney  wrote:
    Hi VT
    One doubt.
    This query will give the table names of only select stmt used in the procedure
    or
    List of table names that are with in any DML operations inside the procedure?
    Thanks
    JoIt will give all the table either used in select or in any DML..
    You can also check by creating a temp proc
    SQL> drop procedure proc_test;
    Procedure dropped.
    SQL> select name, referenced_name, dependency_type from user_dependencies
      2  where type = 'PROCEDURE' and referenced_type = 'TABLE' and name='PROC_TEST';
    no rows selected
    SQL> create or replace
      2  PROCEDURE proc_test
      3  IS
      4  v_ID    number;
      5  v_PRID  number;
      6  v_PRLID number;
      7  v_DATERECEIVED date;
      8  Cursor C1 is
      9  select * from table_c;
    10   BEGIN
    11   open c1;
    12     LOOP
    13      FETCH c1 INTO v_ID,v_PRID,v_PRLID,v_DATERECEIVED;
    14      EXIT WHEN c1%NOTFOUND;
    15      insert into table_b values(v_ID,v_PRID,v_PRLID,v_DATERECEIVED);
    16      Commit;
    17     END LOOP;
    18   CLOSE C1;
    19   END;
    20  /
    Procedure created.
    SQL> select name, referenced_name, dependency_type from user_dependencies
      2  where type = 'PROCEDURE' and referenced_type = 'TABLE' and name='PROC_TEST';
    NAME
    REFERENCED_NAME                                                  DEPE
    PROC_TEST
    TABLE_B                                                          HARD
    PROC_TEST
    TABLE_C                                                          HARD
    SQL> Regards
    Umesh

  • Please help me I am not seeing Database table column names in field explorer view

    Hi,
    I am developing a crystal report using eclipse and sql server. After creating connection, when i drag and drop tables, The table name and its columns should apper in field explorer view. Then we drag the columns onto crystal report. Unfortunately I am just  seeing only table names but not column names in field explorer view. Could anyone help me?
    After downloading eclipse I have plugged in the crystal report using the following instructions
    1. Click on the Help menu, and then Software Updates > Find and Install... to open the Install/Update wizard.
    2. Select Search for new features to install and click Next.
    3. Click the New Remote Site button. This will launch the New Update Site wizard
    4. Type the Business Objects Updsate Site for the Name field and the following for the URL: http://www.businessobjects.com/products/dev_zone/eclipse/
    5. Click OK to complete the wizard.
    6. Enable the newly created Business Objects Update Site checkbox as well as the Callisto Discovery Site (which should appear by default with Eclipse 3.2) and click Finish.
    Expand the Business Objects Update Site node and enable the Crystal Reports for Eclipse 1.0.0v555 checkbox.
    8. Expand the Callisto Discovery Site and click the button "Select Required". This will automatically select the required Eclipse features necessary to successfully install Crystal Reports for Eclipse.
    Thank You
    Rajavardhan Sarkapally

    Now we have a lot of views which select data from the tables, but I need to get the "Table Column Name" that is linked in the view.
    If you are using SQL Server 2012/2014, then you can use
    sys.dm_exec_describe_first_result_set (Transact-SQL) to gte the informations.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • The table with Name of 'Table Name' does not exist.An error occurred when loading the Model.

    The table with Name of 'Table Name' does not exist.An error occurred when loading the Model.
    We get this error when we try to check the properties of an analysis server using SQL Server Management studio(right click the instance name
    and check properties). We have resolved this issue twice by Stopping the SQL Server analysis service,removing db folders from Analysis Server Data folder and starting the services back on. The db folder that we removed was advised by the BI team.
    The SQL Server Analysis Server is 2012 SP1

    Hi RB_ORIPW,
    The table with name of 'XXX' doesn't exist.
    An error occurred when loading the model(Micorsoft.AnalysisServices)
    If I understanding correctly, you encounter the error randomly, now what you want it that avoid this issue completely, other than stop the services, detele the db filder and restart the services, right?
    The error might be caused by that the data file is corrupted. However, we cannot give you the exact reason that cause this issue. You can troubleshoot this issue by using the Windows Event logs and msmdsrv.log.
    You can access Windows Event logs via "Administrative Tools" --> "Event Viewer".  SSAS error messages will appear in the application log.
    The msmdsrv.log file for the SSAS instance that can be found in \log folder of the instance. (C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Log)
    Here is a blog about data collection for troubleshooting Analysis Services issues, please see:
    Data collection for troubleshooting Analysis Services issues
    Besides, here is fix that describe the similar issue, and it was fixed in Cumulative Update 7 for SQL Server 2012 SP1, please refer to the link below to see the details.
    http://support.microsoft.com/kb/2897263/en-us
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • Passing TABLE NAME as parameter is possible or not?

    I want develop a small/simple report like this
    TABLE NAME :
    WHERE :
    ORDER BY :
    QUERY ROWS
    In the above model i want to pass all the three (TABLE NAME,WHERE and ORDER BY) as a parameter.
    My doubt, is that possible to pass TABLE NAME as a parameter? If so!
    When i enter any TABLE NAME it has to fetch me out the records of that table (Based on WHERE condition and ORDER BY).
    Is that possible to do?
    Need some help!
    Edited by: Muthukumar Seshadri on Aug 10, 2012 6:19 PM

    Yes, it is possible with lexical parameters. Look in the help for examples:
    SELECT Clause
    SELECT &P_ENAME NAME, &P_EMPNO ENO, &P_JOB ROLE  FROM EMP
    P_ENAME, P_EMPNO, and P_JOB can be used to change the columns selected at runtime.  For example, you could enter DEPTNO as the value for P_EMPNO on the Runtime Parameter Form. 
    Note that in this case, you should use aliases for your columns.  Otherwise, if you change the columns selected at runtime, the column names in the SELECT list will not match the Report Builder columns and the report will not run.
    FROM Clause
    SELECT ORDID, TOTAL FROM &ATABLE
    ATABLE can be used to change the table from which columns are selected at runtime.  For example, you could enter ORD for ATABLE at runtime. 
    If you dynamically change the table name in this way, you may also want to use lexical references for the SELECT clause (look at the previous example) in case the column names differ between tables.
    WHERE Clause
    SELECT ORDID, TOTAL FROM ORD WHERE &CUST
    ORDER BY Clause
    SELECT ORDID, SHIPDATE, ORDERDATE, TOTAL  FROM ORD ORDER BY &SORT You have to be really careful with this approach. Dynamic SQL may cause serious performance problems.
    Edited by: InoL on Aug 10, 2012 10:06 AM

  • Officejet Pro 8600 Plus, not appending number in sequence to base file name when saving PDF.

    Officejet Pro 8600 Plus (new today - everything else working great), Vista 32-bit, HP desktop.
    After scanning documents and creating a PDF file (Save to file on my computer w/USB connection), using HP Scan, it does not append numbers in sequence to base file name.  HP Scan (Under Advanced Settings/Destinations) reads that it will do this (when you over over the base name field).  Perhaps I have to enable something.  Do you know how I can do this?  Thank you.

    I'm not really sure what's going on.  The install might not have written right.  Try uninstalling and installing from a fresh download.  Let me know what happens.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Building a data flow task, within a foreach loop for dynamic table name, but ole db source not allowing variable

    In my control flow, I set up a variable for the table name, enumerated by SMO, following the instructions from the link here:
    http://www.bidn.com/blogs/mikedavis/ssis/156/using-a-for-each-loop-on-tables-ssis
    Now, I put a data flow task inside the foreach. I selected the OLE DB connection manger for my database, set the Data access mode to "Table name or view name variable", and selected my variable name from the drop down. So far so good. When I click on OK,
    it gives me an error 0x80040E37, basically saying it can't open the rowset for "my variable", Check that the object exists in the database.
    So, I assume I won't be able to do this "that' easily, and I will need to build a "SQL command from variable" or some such thing. Any advice on how to build this Source editor to dynamically name my columns from the variable?
    Thanks in advance!
    mpleaf

    Hi mpleaf,
    Please try to set "ValidateExternalData" to False in your OLE DB Source Properties and "DelayValidation" property to TRUE, please refer to similar threads:
    http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/620557d9-41bc-4a40-86d5-0a8d2f910d8c/
    http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/456f2201-447c-41b3-bf27-b3ba47e6b737
    Thanks,
    Eileen
    Eileen Zhao
    TechNet Community Support

Maybe you are looking for

  • Dreamweaver CC and Windows 8.1 - Can't Find A Valid Editor For This File Extension

    Was running the latest version with no issues and then I loaded Office 2013 .. Now when I am in the remote site and try to double click on a .cfm file, I get a dialog box..Can't Find A Valid Editor For This File Extension.. I tried the support chat a

  • HT3209 high def vs standard def

    Just purchased a tv series in high def and it looks like it will take 11h per episode to download.  Would standard def be much faster, and would it be likely that the folks at the itunes store would change this for me?

  • Forms and Czech characterset

    Hello everybody, I created a form to update calendar events. I used Czech language to made labels of inputs in the form. Czech special characters aren't display correctly. Others applications, pages and CAs are OK. Just I have problems with forms. Th

  • UNDO PHOTO SYNCING ?!

    i synced photos from my pc labtop to my phone how do i get them off my phone now?

  • Photoshop Elements &IMac/Snow Leopard

    I have had Photshop Elements 3.0 installed on my Imac running on Leopard and it has been problem free. I have recently installed Snow Leopard  and now I am having problems opening some photos from IPhoto. When I have Iphoto set to edit in Elements bu