Results 1 to 2 of 2

Thread: source table filter

  1. #1
    Join Date
    May 2006
    Posts
    3

    source table filter

    hi to all ,

    i am trying to write source table filter sytax
    for a dimension so i can see only part of the table data as
    the dimension,

    like that:
    col=value
    "CODE_MAARECHET"='HK'
    and i get this message :
    the column expration must be qualified with the table name
    near "CODE_MAARECHET"

    when i add table
    like that:
    table.col=value
    "dwwts_gil_to_0273"."CODE_MAARECHET"='HK'
    i get this message :
    table "dwwts_gil_to_0273" is not found in the from clause .

    * i'm working with ORACLE DB.

    HOPE SOME1 SEE ME.
    Last edited by yaniv; 05-10-2006 at 01:01 AM. Reason: litle mistake

  2. #2
    Join Date
    Oct 2006
    Posts
    5

    source table filter

    Hi Yaniv,
    I know this is a very late reply, but it may be helpful for forum members.
    I was facing the same problem, though I am using SQL Server 2000, but I added dbo before table name and it started working.
    You can also try
    dbo.<tablename>.<column name>=value

    Hope this will help.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •