Problem in viewing the synonym

Hi,
I have created a synonym as below,
create synonym     PCS_TARGET.C$_0BLOB_TARGET
for           PCS_MASTER_INT.C$_0BLOB_TARGET@PCBID
But when i try to view this, its throwing an error as
ORA-00942: table or view does not exist
It doesn't consider the db link PCBID,came to know when i try to see its DDL.
I have to access this synonym,Pls suggest what to do to sort out this.
Many thanks in advance

This is more an Oracle DB problem than an ODI problem.
Can you do a SELECT * FROM PCS_MASTER_INT.C$_0BLOB_TARGET@PCBID WHERE rownum <2 ?
If not the target schema of your dblink lacks privileges on table PCS_MASTER_INT.C$_0BLOB_TARGET.

Similar Messages

  • Suddenly PDF files refuse to open, error message saying there was a problem pre viewing the document Any thoughts?

    PDF files refuse to open, I get an error message saying there was a problem pre viewing the document. Any thoughts?

    moved from Downloading, Installing, Setting Up to Creating, Editing & Exporting PDFs

  • Problem in viewing the webhelp output in a RoboHelp-DocumentX project

    Hi, I am working with Robohelp X5. The project is generated together with DocumentX and hence contains more than 15,000 files. Secondly, the proper webhelp output is extremely essential for this project as it concerns the links which are also in thousands.
    A problem has occured where the webhelp is getting generated, but I cannot view the output. The generated file occurs in the webhelp folder, but displays only a single page with no navigation pane or even the content/search tabs.
    The project had been successful in April. While updating it, I copied the Robohelp project folder and things started. Initially the prosource folder was showing an error while opening the project. When I copied it again to a different location, the project file opened and functioned fine, but the output problem is still there.
    What I have now id - The original folder with the crashed project, 2 new copies of  this folder where the project works fine and the webhelp is generated with no output.
    Please help me, because starting from scratch with DocX files is a nightmare!

    By DocumentX do you mean the Microsoft Word format .docx?
    If so I am not surprised you have had trouble. Quite simply, X5 is not Word 2007 compatible.
    I don't follow "hence contains more than 15,000 files". What's the connection with using Word that causes a high number of files that would not occur otherwise?
    15,000 topics in one project is high anyway and at the level I would expect problems.
    Are you using RoboHelp for Word or RoboHelp HTML?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Problem with viewing the tv series "Gurren Lagann" in itunes.

    When I go to the itunes store and search gurren lagann the page loads fine but when I try to view the complete series itunes stops working. This problem happens with different accounts and on different computers.
    the itunes verson that is currently on my inspiron computer is 9.0.3.15
    is this a problem with itunes or is it a problem with my computers/accounts?

    Fault Module Name: WebKit.dll
    Fault Module Version: 5.31.21.8
    That's the rendering engine iTunes uses to display the Store contents.
    There's a newer version of webkit.dll in the most recent version of Apple Application Support (version 1.4.1 as I write this post). To update your Apple Application Support, the most straightforward procedure would be updating to iTunes 10.1.1.4 ... but if you're not keen on that, we could do it by updating your QuickTime to version 7.6.9 (there's a version 1.4.1 for Apple Application Support in the QuickTime 7.6.9 installer).
    If you want to go the QuickTime-update route, here's a link to the download page for QuickTime installers. (Get the installer that doesn't mention QuickTime ... the installer file should be called "QuickTimeInstaller.exe" rather than "iTunesSetup.exe" or "iTunes64Setup.exe".)
    http://www.apple.com/quicktime/download/
    ... does your iTunes behave better with the newer version of webkit.dll in place?

  • Problems of viewing the photos in IPhone 5.Please help!

    Hello! I just start to use iphone 5 today. I tried to sync some photos with 3:2 ratio photos to my iphone 5. But when I view the photo in iphone, I cannot see full image of the photos (Pic 1).      
    Can I make some setting to help me to "auto fit screen" in iphone5 to solve this problems like Pic 2?
    Thank you for your help.
    Regards,
    Lawrence
    Pic1
    Pic 2

    Really? Oh no!!!   i tried to search in google this same question and i encounter some site that offer an application that will recover those deleted data(images) but its a paid applications so I cannot check if it can resolve my problem.. Anyway thanks for your reply.:)

  • Problem in viewing the components on running a window using java or javaw

    hi
    whenever i run a windowed application built in swing i have to resize the window in order to view the components i added to the container of the window.
    but this does not happens when i use a JProgressBar
    please help me out with this

    Read the [url http://java.sun.com/docs/books/tutorial/uiswing/TOC.html]Swing tutorial. There are plenty of examples that work correctly.
    If you still have problems then post your [url http://www.physci.org/codes/sscce.jsp]Simple, Executable Demo Program that shows the incorrect behaviour. We are not going to sit here guessing what you may or may not be doing.

  • Problem in viewing the videos in iTunes

    When I view movie trailers in iTunes, blank green screen is being seen in my mac book air 11 mid 2012. What is the problem and how to solve it..? I am able to get the audio.

    By DocumentX do you mean the Microsoft Word format .docx?
    If so I am not surprised you have had trouble. Quite simply, X5 is not Word 2007 compatible.
    I don't follow "hence contains more than 15,000 files". What's the connection with using Word that causes a high number of files that would not occur otherwise?
    15,000 topics in one project is high anyway and at the level I would expect problems.
    Are you using RoboHelp for Word or RoboHelp HTML?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Problem in viewing the Image in BLOB

    Hi,
    I am using the Toad 8.0. I have one problem, I inserted approx 2.5 million records in one table say V_Images using the SQL Loader, there are few records in Table where image is not loaded properly. Approx 99% is done only 1% is having wrong data, We want to identify and delete that, where no image is loaded. Is there any function or method to check those records which doesnt have Image.
    Please let me know,
    Thanks in adv.

    You can probably check the Length of the BLOB column.

  • Problem in viewing the source code of a package using all_source

    I have created a package and compiled it in schema1.I have created public synonym of the package.Now I am logged in some ohter schema say schema2. If I am using TOAD, I can see the body of the package from schma2 but if I am using sqlplus and using all_source data dictionary I can get only the spec of the package.
    Could you please tell me how to get the whole package body using all_source data dictionary from other schema?

    This is the query that I am executing from other schema
    select TEXT from all_source where NAME = 'P_PACKAGE';
    SQL> select OBJECT_NAME ,OBJECT_TYPE from all_objects where OBJECT_NAME = ''P_PACKAGE';
    OBJECT_NAME OBJECT_TYPE
    'P_PACKAGE SYNONYM
    'P_PACKAGE PACKAGE

  • Has anyone had a problem with viewing the same pdf but it looks different on two computers?

    I am plotting a pdf file from a DWG drawing.  The pdf file looks fine on my computer.  However, when I send it to someone else the lines are not visible and it is hard for them to read.  I have tried exporting to pdf and plotting to pdf. The program I am using is AutoCAD 2012 and Adobe Reader X. I am having problems finding a solution to this.

    Hello, you posted in a forum about the help files, I understand the possible confusion with its name. I'm going to move this post to the Acrobat forum.

  • Problem in viewing the names of the tabs of Report composer

    Hi Buddies,
    Below mentioned is the current version of my SAP Business One.
    SAP Business One 2007 B (8.60.033)  SP: 00  PL: 06.
    The problem I am facing is, I cant see the names of the tabs in the Report composer of XL Reporter that comes inbuilt in 2007B. Instead of tab names am getting a combination of alphabets& numbers....... like B1_17_1536 in place of Finacials , B1_30_10496 in place of Budget_Setup, n so on ...
    Could someone help me out in sorting out this problem????????? Is there any other patch level that can be upgraded for rectifying this .......
    Regards,
    AnSan

    AnSan,
    The forum that you have posted your question in is for questions related to the SAP Business One Integration for SAP NetWeaver.
    Your question is application related to the XL Reporter. Please post application related questions in the SAP Business One Discussion Forum.
    Also ... please post your question only once in the respective forum.
    Thank you,
    Eddy

  • Unavailable or Initialization problem when viewing the servlets from admin console

    Hi
    I am on Weblogic 5.1.0. I connect to myServer which comes configured by
    default. When i see the
    registered servlets inside HTTP, on the console i see Unavailable or
    Initialization problem on every
    servlet that i select. Also when i try to load the servlet, it gives me the
    following error :--
    Property Change error for property "Load". Unable to load servlet.
    This is happening for all the servlets which are inside the General
    application inside HTTP tab.
    But when i executing the servlet examples that comes along with Weblogic,
    those examples are
    working fine.
    Also, i started my console and started the "myServer" instance and attached
    it to the console. But due to
    some reason my console hung. So i closed down the console window by pressing
    the browser close button.
    The weblogic server instance of "myServer" was still running. Then i started
    the console again and attached the
    running weblogic server instance of "myServer" to the console and went to
    servlets. This time all the servlets
    show "Previous Class Load Problem".
    Why all this is happening. Has this any where documented how to use the
    Weblogic console and Weblogic server
    instances. I have gone thru the Installation documentation of Weblogic but
    nothing like this has been mentioned over
    there.
    Thanks for ur help
    Niranjan

    Hi,
    Try to find which object causing high cpu usage following Oracle Doc ID 779349.1.
    by looking into the files then we can find what would be exact cause of this issue.
    Regards,
    Kalyan

  • Problem in viewing the site

    Hi All,
    I have made an intranet site it looks very fine but one problem is that when we look at screen resolution 1024*768 it look fine.When we look at 800*600 it look very bad.Is there any setting that it will look proper in all resolution.Pls tell me

    Hi!
    Read the post in this thread of the forum. Maybe it could help you.
    Re: How to align center for 800x600 webpage on a 1024x768 screen ?

  • Problem with viewing the next page on "My Wish List"

    Hello: "My Wish List" page in the iTunes store won't let me see page 2 (or higher). Even when I click on the obvious icon labelled "2" or "next" (as in "next page"), the page stubbornly remains on page 1.  This seems ridiculous, but I'm wondering if anyone else is having this gnat of a problem?  Any suggested solutions welcomed -- thanks in advance. Oh yes, I'm using iTunes 10.4.1.

    While playing any song on your iPod, tap the artwork to bring up the scrubber bar and additional controls. On the left hand side is a option for repeat. You want to make sure this icon is white (meaning it is set to Off). If it isn't tap it either one or two times to change its current setting.
    Any luck there?
    B-rock

  • Execute Query problem in viewing the Image

    Hi all,
    I've created a table with the following command
    Create table test (id Number(5),img_File Blob);
    Now i've created a form, where in the I've placed two fields (id and Img_File). The data type for the Img_File field is Image Item. I'm able to see that it is getting saved.
    I've seen it using the toad that the data is being inserted into the table. When i try to press f7 and then f8(i.e.., Enter Quey, Execute Query). I'm getting the following error.
    ORA-00932: inconsistent datatypes: expected got
    My block is based on the table. I'm using Forms 6i, Windows XP. My doubt is why the error is not showing the datatype (for Ex. Expected Number got date).
    If any one has worked on the Blob, then can suggest me.
    Regards,
    Alok Dubey

    Hi,
    Thanks for your replies. I've used Long Raw data type for the image column. it started get queying.
    i've a doubt that whether it is same in Forms 6i and Forms 10g also(i.e.., Both the versions use the Long for the images). As BLob has more advantages than
    the Long raw. As this is the Oracle recommendation, I want to use Blob. Is there any work around to it.
    Regards,
    Alok Dubey

Maybe you are looking for

  • Warning message when cliking on "montage" on a French version

    Hello I'm using Imovie 6HD with Imovie 7.1.4 on my HD. When I try to add transition on my projet, I've got these warning message : Le module Circle transitions est defectueux. Circle transition module is not good, same message for Flash, ghost trails

  • Unable to connect to my home PC from my home Mac using Windows Remote Desktop

    i have downloaded from the Microsoft website and also the Application from the App store and both fail to connect. i have connected to my PC using the migration assistant so they are able to recognise each other. on the Mac: - downloaded the app and

  • Generic Heterogeneous Services

    I’m trying to implement Heterogeneous Services using the generic ODBC driver supplied with Oracle 8.1.7. I am attempting to connect to a ForPro database running on a NT server from Solaris 5.7 running Oracle 8.1.7. Up to this point I have not been ab

  • SQL error 17410 No more data to read from socket

    Hi, I may have reached some stability limit of my JDBC thin driver, DB version and the complexity of my use cases?? DB= 9.0.1.0 Jev/OC4J = 9.0.2 So this includes the JDBC thin driver included that looks like version; 9.0.2.7.99 It made no sense but c

  • Hyperion Financial Reporting - Export to Excel converting Data to Text

    We are using Hyperion Financial Reporting 11.1.2.2 with Hyperion Workspace 11.1.2.2 reporting on an ASO Essbase cube version 11.1.2.2. When we export a report to Excel any data values that are displayed in the report with a negative ('-', '()', etc.)