Distribute Query.

is there any query to distribute a name in three column like below
select emp_name from employee;
EMP_NAME
Alistair Cook Steve
select first_name,second_name,last_name from new_employee;
FIRST_NAME SECOND_NAME LAST_NAME
ALISTAIR COOK STEEVE
anyone help me how can i do this ?

Something as
with data as
select '1 AVENUE OF THE AMERICAS' as ADDRESS from dual union all
select '2 NORTH CAROLINE STREET EAST' as ADDRESS from dual union all
select '236 TURPENTINE ROAD COOPER CREEK' as ADDRESS from dual
select
  substr( address, 1, instr( address, ' ' ) - 1 ) as p_1 ,
  substr( address, instr( address, ' ', - 1 ) + 1 ) as p_2 ,
  substr
  ( address,
    instr( address, ' ', + 1 ) + 1,
    instr( address, ' ', - 1 ) - instr( address, ' ' ) - 1
  ) as p_3
from
  data
P_1 P_2        P_3
1   AMERICAS   AVENUE OF THE
2   EAST       NORTH CAROLINE STREET
236 CREEK      TURPENTINE ROAD COOPER

Similar Messages

  • Avoid Distributed query in PL/SQL cursor code

    Hi,
    I have to avoid a distributed qry in my cursor code in PL/SQL.
    The query follows like this,
    cursor c1
    is
    select a.test,b.test1,a.test2
    from apple a,
    [email protected] b,
    bat c
    where a.listid = b.listid
    and a.list_name = c.list_name;
    Now i need to split the above cursor into two .
    (1)I need to query appl and bat which is from local database into one and
    (2)Have to do something for the value from [email protected] is stored in a temp. table or PL/SQL table.So that ,i can use the PL/SQL table or temp table in my join in cursor ,instead of having a distributed query.
    By doing so,will the performance hit badly ?
    [Note: Imagine this scenario is taking place in Oracle 11i Apps]
    Regards,
    Prasanna Natarajan,
    Oracle ERP Tech Team.

    [url http://groups.google.de/group/comp.databases.oracle.server/browse_frm/thread/df893cf9be9b2451/54f9cf0e937d7158?hl=de&tvc=1&q=%22Beautified%22+code+runs+slower#54f9cf0e937d7158]Recently somebody complained about slow performance after code was beatified in PL SQL Developer, after recompilation without flag "Add Debug Information" it run faster...
    (just a guess)
    Best regards
    Maxim

  • Distributed Query Overhead

    Hi All,
    I have a distributed deployment of two oracle instances where database A keeps a replication of a schema from database B.
    I have A and B linked together, B sees A as a remote database, and my application sends queries to database B.
    Let's say I have the following two queries:
    The following is issued to B:
    select * from magic.accountejb@A a where a.profile_userid = ( select userid from magic.accountprofileejb@A ap where ap.userid = 'uid:174')
    and the following issued directly to A (which is basically the same query as above):
    select * from accountejb a where a.profile_userid = ( select userid from accountprofileejb ap where ap.userid = 'uid:174')
    when I measure the time through my Java application, the second query executes more than 3 times faster than the first query (23ms on A compared to 80ms on B). However, when I use the sqlplus client on B to issue the exact same query, the execution time reported by sqlplus is almost identical to the second one(20ms).
    When I monitor the execution plan through *@UTLXPLAN*, it seems like the query sent to B is also fully executed remotely and on A. with a network latency of 11ms between A and B, I am not sure why I see such a long delay for the first query. Also playing with DRIVING_SITE did not have any perceived effect on improving performance.
    I wonder if anybody has any explanation for the difference I see? is a distributed query really 3 times slower than a regular query even though both are pretty much handled by the same database engine? or is it so that I need some other sort of tuning?
    Any thoughts or advice on how I can achieve comparable performance is highly appreciated.
    thanks!
    Edited by: 944957 on 16-Nov-2012 20:25
    Edited by: 944957 on 16-Nov-2012 20:29

    Thanks a lot for the quick response:
    rp0428 wrote:
    1. the 4 digit Oracle version (or other DB version)
    2. the JDK version
    3. the JDBC jar name and versionI am using ojdbc14 with Oracle 11g XE and JDK 7.
    4. the code you are using that shows an issue or problem.The queries I am using is basically the two queries I provided earlier, and here is the exact Java code. I loop over the code below 20 times and discard the first two retrieved results for each query and calculate an average on the remaining 18 results collected.
    static Connection c1 = null, c2 = null;
    static Statement _session;
    public void getStats(){
    long start;
    for (int i = 0; i < 20; i++) {
    c1 = (c1 != null) ? c1 :
         DriverManager.getConnection("jdbc:oracle:thin:@//" + System.getProperty("host.1")+"/XE", "magic", "magic");
    _session = c1.createStatement();
    session.executeUpdate("ALTER SESSION SET CURRENTSCHEMA=magic");          
    start = System.currentTimeMillis();
    _session.executeUpdate(query);
    values[0] = System.currentTimeMillis() - start;     
    _session.close();
    c2 = (c2 != null) ? c2 :
         DriverManager.getConnection("jdbc:oracle:thin:@//" + System.getProperty("host.2")+"/XE", "magic", "magic");
    _session = c2.createStatement();
    _session.executeUpdate("ALTER SESSION SET CURRENT_SCHEMA=magic");          
    start = System.currentTimeMillis();
    _session.executeUpdate(distQuery);          
    values[1] = System.currentTimeMillis() - start;     
    _session.close();
    } // end for loop     
    } // end method
    5. for performance related issues - the data volume being queried or processedThe data volume is rather small. I measure the data and it is roughly about 10K of data transfer.
    >
    Without seeing the code to see how you are measuring the timing it is hard to comment on what you posted.
    3. How was the timing computed in sql*plus?for sqlplus, I issue *set timing on* prior to executing the queries.
    4. Were the connections already created before the timing started? Or is the creation of the connection part of the timing result?As you see in the code, the connection is only created the first time I issue a query, and I discard the results of the first two queries using the connection as the timing is far off specially for the first query. I think the first query also download some metadata information that I don't consider in calculating the performance.
    5. Do the timings include the retrieval of ALL result set data? Or just the first set of results?the time only consists of executing the first set.
    Can you post the explain plans for the java and the sql*plus executions?Here is the results of the explain plan
    PLAN_TABLE_OUTPUT
    Plan hash value: 3819315806
    | Id | Operation          | Name          | Rows | Bytes | Cos
    t (%CPU)| Time     | Inst |
    PLAN_TABLE_OUTPUT
    | 0 | SELECT STATEMENT REMOTE |               |     1 |     43 |
    2 (0)| 00:00:01 |     |
    | 1 | TABLE ACCESS BY INDEX ROWID| ACCOUNTEJB     |     1 |     43 |
    2 (0)| 00:00:01 | CORONA |
    |* 2 | INDEX RANGE SCAN     | ACCOUNT_USERID     |     1 |     |
    1 (0)| 00:00:01 | CORONA |
    |* 3 | INDEX UNIQUE SCAN     | PK_ACCOUNTPROFILEEJB |     1 |     9 |
    0 (0)| 00:00:01 | CORONA |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
    2 - access("A1"."PROFILE_USERID"= (SELECT "A2"."USERID" FROM "MAGIC"."A
    CCOUNTPROFILEEJB"
    PLAN_TABLE_OUTPUT
         "A2" WHERE "A2"."USERID"='uid:174'))
    3 - access("A2"."USERID"='uid:174')
    Note
    - fully remote statement
    Edited by: 944957 on 16-Nov-2012 20:51
    Edited by: 944957 on 16-Nov-2012 20:53
    Edited by: 944957 on 16-Nov-2012 20:55
    Edited by: 944957 on 16-Nov-2012 20:56
    Edited by: 944957 on 16-Nov-2012 20:57
    Edited by: 944957 on 16-Nov-2012 20:59

  • Distributed query using local BackingMap

    I'm trying to create a distributed query (deriving a task from AbstractInvocable). I want each cluster node to query only it's local storage, aggregate a result and then return that single result to the invoker of the Task.
         To do this I'm using the BackingMap for a NamedCache and running the query on this. My question is, since this is a Map, how can I run the query using Filter objects?
         On the NamedCache (i.e. the entire cache) I can query with a Filter, but to achieve the same thing with a local BackingMap I have to iterate through the entire Map. What am I missing?!
         Many Thanks,
         Jools

    Thanks Cameron.
         We can query the NamedCache using Filters - that's fine.
         What I'm trying to achieve though, is to use distributed tasks running on each node. The reason is that we're planning on using a widely-Distributed cache with nodes in both the US and the UK, and as such we're trying to minimise bandwidth usage by having the distributed task perform some aggregation on the local node and return only the result.
         However, if we can only get a Map interface on the local node, and therefore cannot use Filters (or indexes for that matter) and can only iterate through the contents of the Map looking for properties that match our criteria, then it may end up being too inefficient to do it this way.
         Are there no config settings than govern what type of object gets returned as the backing map on the local node?
         Thanks,
         Jools

  • Distributed Query in-parallel?

    I tried to execute distributed query on three database machines. I hope it would be executed in-parallel. Unfortunately, I found I used 3 times of execution time with distirbuted query compare to search in only one node. Obviously, the query statement was processed one by one. (Data was distributed in three nodes averagely)
    Here is the example.
    select * from nemo.seven_dis_table
    union
    select * from [email protected] where rownum<=1000
    union
    select * from [email protected] where rownum<=1000
    With the docuemnt http://www.dba-oracle.com/t_opq_parallel_query.htm, this sql would be executed on two remote site in-parallel. My question is, why can not be executed in-parallel in my case? Is it really parallelism query?

    I'm by no means an expert in distributed queries, but having read through the document you linked and looking at your query, I think you're misunderstanding either distributed processing or the union statement.
    At the moment, all you're doing is getting data from three sources and then mashing it together with a costly union statement.
    If you put in UNION ALL instead, it would give you a better idea of how fast it retrieves data because it won't bother sorting and removing duplicated records.
    The idea behind distributed processing is that you can query a very large table on ONE database using multiple processors, not multiple databases on different servers....

  • Distributed query for license key

    Hello,
    I have a distributed query that I'm hoping is retrieving the license key information below:
    USE master
    GO
    create table #version
    version_desc varchar(2000)
    insert #version
    select @@version
    if exists
    select 1
    from #version
    where version_desc like '%2005%'
    Begin
    DECLARE @Registry_Value_2005 VARCHAR(1000)
    EXEC xp_regread 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.1\Setup','ProductCode',@Registry_Value_2005 OUTPUT --2005
    SELECT @@version as 'version',@Registry_Value_2005 as 'license_key'
    End
    else if exists
    select 1
    from #version
    where version_desc like '%express%'
    Begin
    DECLARE @Registry_Value_2008_express VARCHAR(1000)
    EXEC xp_regread 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10_50.SQLEXPRESS\Setup','ProductCode',@Registry_Value_2008_express OUTPUT -- 2008 express
    SELECT @@version as 'version',@Registry_Value_2008_express as 'license_key'
    End
    else if exists
    select 1
    from #version
    where version_desc like '%R2%'
    Begin
    DECLARE @Registry_Value_2008_R2 VARCHAR(1000)
    EXEC xp_regread 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\Setup','ProductCode',@Registry_Value_2008_R2 OUTPUT -- 2008 R2
    SELECT @@version as 'version',@Registry_Value_2008_R2 as 'license_key'
    End
    else if exists
    select 1
    from #version
    where version_desc like '%2008%'
    Begin
    DECLARE @Registry_Value_2008 VARCHAR(1000)
    EXEC xp_regread 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10.MSSQLSERVER\Setup','ProductCode',@Registry_Value_2008 OUTPUT -- 2008
    SELECT @@version as 'version',@Registry_Value_2008 as 'license_key'
    End
    else if exists
    select 1
    from #version
    where version_desc like '%2012%'
    Begin
    DECLARE @Registry_Value_2012 VARCHAR(1000)
    EXEC xp_regread 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.MSSQLSERVER\Setup','ProductCode',@Registry_Value_2012 OUTPUT -- 2012
    SELECT @@version as 'version',@Registry_Value_2012 as 'license_key'
    End
    else
    Begin
    select 'version not recognized'
    End
    drop table #version
    I'm noticing the 'key' is coming back the same across our 2012 instances and I'm pretty sure this isn't right. Am I retrieving the right value from the registry? I want to get the actual key that is installed when SQL is installed. Please help also feel
    free to borrow this code if you like.
    Thanks!
    phil

    Hi phil,
    The following query will return the serial number in binary format, you can convert this binary value to product key as other post. For more details, please review this similar
    blog.
    use master
    GO
    exec xp_regread 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Microsoft SQL Server\110\Tools\Setup','DigitalProductID'
    GO
    Regarding to the product code, SQL Server consists of different products registered in the Registry. Each product has a product code (a GUID) as well as an installation package code (also a GUID). For more details, please review this similar
    thread.
    Additionally, for license issues, please call
    1-800-426-9400,
    Monday through Friday, 6:00 A.M. to 6:00 P.M. (Pacific Time) to speak directly to a Microsoft licensing specialist. For international customers, please use the Guide to Worldwide Microsoft Licensing Sites to find contact information in your locations.
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Distributed Query

    Hi
    Can anyone let me know whether oracle supports distributed queries.
    I want to write a single query which fetched data from different - different data sources and give me a consolidated output.
    something like
    select m.a, i.b, d.c, o.e from mssql m, informix i, db2 d, oracle o
    where m.a = i.b and i.b = d.c and d.c = o.e
    I heard that MSSQL Server is providing such functionality.

    Yes, oracle has supported distributed queries from non-oracle databases since oracle 7 using Transparent Gateways (licensed seperately). In oracle 8.1.6, they introduced Generic Connectivity, which allows us to connect to ODBC and Ole DB sources. This feature is provided at no additional cost.
    Takmeister

  • Performance problem using distributed query

    Hi,
    Can anyone provide an explanation/solution to the following problem encountered on an 8.1.7 database:
    SELECT /*+ DRIVING_SITE(vs) */
    vs.col2
    ,user_defined_function
    FROM v_remote_table_1 vs
    ,v_remote_table_2 vc
    ,local_table_1 s
    WHERE vp.col1 = vs.col1
    AND s.col1 = vs.col2
    AND vs.col2 = &some_val
    This generalised query joins two tables in a remote database schema to a table in the local database schema and returns a single row. Without the call to the local user defined function, my specific query returns the row in less than a second. As soon as I include any local user defined function call, even a call to a dummy function which simply returns a string, my query takes several minutes to return its row. Explain plan gives exactly the same plan for both versions of the query, but the statistics are different:
    Version without call to function
    ================================
    8 recursive calls
    0 db block gets
    7 consistent gets
    0 physical reads
    0 redo size
    235 bytes sent via SQL*Net to client
    311 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    1 rows processed
    Version with call to function
    =============================
    93 recursive calls
    4 db block gets
    109 consistent gets
    1998 physical reads
    0 redo size
    288 bytes sent via SQL*Net to client
    312 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    2 sorts (memory)
    2 sorts (disk)
    1 rows processed
    I'm assuming that, when calling a local function, the DRIVING_SITE hint is ignored, but I don't know why. It's quite important that we are able to include the results of function calls in the query. Any ideas as to the cause of the degraded performance and possible solutions to it would be most welcome!
    Thanks.....

    I would try something like:
    SELECT r.col2,user_defined_function
    FROM (SELECT vs.col2
          FROM v_remote_table_1 vs, v_remote_table_2 vp
          WHERE vp.col1 = vs.col1 AND
                vs.col2 = &some_val) r,
         local_table_1 s
    WHERE s.col1 = r.col2Thismay allow Oracle to better seperate the calls to the two databases.
    HTH
    John

  • Error In Distributed Query moving LOB

    The following error has occurred:
    ORA-22992: cannot use LOB locators selected from remote tables
    ORA-02063: preceding line from BMB5_ADM
    ORA-02063: preceding 2 lines from BMB18CU3
    Query:
    INSERT INTO IMAGE@BB18C3
    SELECT B.*
    FROM IMAGE@BB17CS B,INV@BB17CS I
    WHERE B.ref_no = I.ref_no AND B.ref_resets = I.ref_resets AND I.a_no = 70
    Is there a way around moving a LOB from one database to the next. I can not use Import/Export it has to be done as part of a query.
    Thanks,
    Gavin

    Gavin,
    Had same problem... see thread entitled "ORA 22992 -- silly" in the PL/SQL and SQL forum.
    Barbara lists a link that spells out two workarounds (only one that would work for BLOBs though).
    Thanks,
    Adam

  • Oracle distributed query problem

    Hi,
    I am running a nested query on multiple oracle servers of 10g R2 using DBLinks. But if the levels of nested query is increased e.g 3 or 4, oracle gives an error of ORA-02063.
    Can any one please help on this.
    Thanks,
    Usman

    Thanks for the quick response.
    Following is the query:
    select
    Count( nvl(t1_st.t1_st_DG1.EMPTY,0)) AS "F1" ,
    Count( nvl(rpt2."F2",0)) AS "F2" ,
    Count( nvl(rpt1."F3",0)) AS "F3"
    from t1_st.t1_st_JT@DBL_4_15_2008_4_41_11_PM761
    INNER JOIN t1_st.t1_st_DG1@DBL_4_15_2008_4_41_11_PM761 On t1_st.t1_st_DG1.DG1_ID =t1_st.t1_st_JT.DG1_ID
    Full outer join
    ( select t1_st.t1_st_DG1.EMPTY AS "F3" , t1_st.t1_st_DG1.EMPTY AS "F4"
    from t1_st.t1_st_JT@DBL_4_15_2008_4_41_11_PM761
    INNER JOIN t1_st.t1_st_DG1@DBL_4_15_2008_4_41_11_PM761 On t1_st.t1_st_DG1.DG1_ID =t1_st.t1_st_JT.DG1_ID
    ) rpt1 On nvl(t1_st.t1_st_DG1.EMPTY,' ')=nvl(rpt1."F4",' ')
    Full outer join
    ( select t1_st.t1_st_DG1.EMPTY AS "F2" , t1_st.t1_st_DG1.EMPTY AS "F5"
    from t1_st.t1_st_JT@DBL_4_15_2008_4_41_11_PM761
    INNER JOIN t1_st.t1_st_DG1@DBL_4_15_2008_4_41_11_PM761 On t1_st.t1_st_DG1.DG1_ID =t1_st.t1_st_JT.DG1_ID
    ) rpt2 On nvl(t1_st.t1_st_DG1.EMPTY,' ')=nvl(rpt2."F5",' ') ;
    Following is the error:
    SQL Error: ORA-00904: "A2"."QCSJ_C000000000300001": invalid identifier
    ORA-02063: preceding line from DBL_4_15_2008_4_41_11_PM761
    Please note that query itself has no errors (i have confirmed this by running the query on its own server i.e without dblinks)
    Thanks,
    Usman

  • Commit after a select query

    Do we need to commit after a select statement in any case (in any transaction mode)?
    Why do we need to commit after selecting from a table from another databse using a DB link?
    If I execute a SQL query, does it really start a transaction in the database?
    I could not find any entry in v$transaction after executing a select statement which implies no transactions are started.
    Regards,
    Sandeep

    Welcome to the forum!
    >
    Do we need to commit after a select statement in any case (in any transaction mode)?
    >
    Yes you need to issue COMMIT or ROLLBACK but only if you issue a 'SELECT .... FOR UPDATE' because that locks the rows selected and they will remain locked until released. Other sessions trying to update one of your locked rows will hang until released or will get
    >
    ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired
    >
    In DB2 a SELECT will create share locks on the rows and updates of those rows by other sessions could be blocked by the share locks. So there the custom is to COMMIT or ROLLBACK after a select.
    >
    Why do we need to commit after selecting from a table from another databse using a DB link
    >
    See Hooper's explanation of this at http://hoopercharles.wordpress.com/2010/01/27/neat-tricks/
    And see the 'Remote PL/SQL section of this - http://psoug.org/reference/db_link.html
    A quote from it
    >
    Why does it seem that a SELECT over a db_link requires a commit after execution ?
    Because it does! When Oracle performs a distributed SQL statement Oracle reserves an entry in the rollback segment area for the two-phase commit processing. This entry is held until the SQL statement is committed even if the SQL statement is a query.
    If the application code fails to issue a commit after the remote or distributed select statement then the rollback segment entry is not released. If the program stays connected to Oracle but goes inactive for a significant period of time (such as a daemon, wait for alert, wait for mailbox entry, etc...) then when Oracle needs to wrap around and reuse the extent, Oracle has to extend the rollback segment because the remote transaction is still holding its extent. This can result in the rollback segments extending to either their maximum extent limit or consuming all free space in the rbs tablespace even where there are no large transactions in the application. When the rollback segment tablespace is created using extendable files then the files can end up growing well beyond any reasonable size necessary to support the transaction load of the database. Developers are often unaware of the need to commit distributed queries and as a result often create distributed applications that cause, experience, or contribute to rollback segment related problems like ORA-01650 (unable to extend rollback). The requirement to commit distributed SQL exists even with automated undo management available with version 9 and newer. If the segment is busy with an uncommitted distributed transaction Oracle will either have to create a new undo segment to hold new transactions or extend an existing one. Eventually undo space could be exhausted, but prior to this it is likely that data would have to be discarded before the undo_retention period has expired.
    Note that per the Distributed manual that a remote SQL statement is one that references all its objects at a remote database so that the statement is sent to this site to be processed and only the result is returned to the submitting instance, while a distributed transaction is one that references objects at multiple databases. For the purposes of this FAQ there is no difference, as both need to commit after issuing any form of distributed query.

  • How to use variant in Query broadcasting?

    Hi,gurus here,we need to distribute report based on query daily to users.
    We hope the required-entry variable of query can be filled according logic such as curren day,curren month,etc. automatically.
    In General Precaculation tab of Setting new setting we can see 2 methods of Variable Assignment:
    Determine here
    Determine from variants
    Apparently Determine here can just distribute query report based on fix value, it does not serve our purpose.
    But in Determine from Variants,we can see nothing from Variant list(Just the first select value which is No Selection Possible). We also tried to define a variants in analyzer,but we can not see the variant here.
    So how to use it to serve our purpose of distribute query report to users daily with automatic required-entry value filled?

    Hi,
    Please refer the article from the below link, it contains all the steps and will erase all your doubts -
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9075b11a-6e43-2c10-b7be-cfa0e97ec0cc?QuickLink=index&overridelayout=true]
    Hope this helps.
    Regards,
    RahulM

  • Query Iview

    Hi: I connect my portal to an Oracle DB and I have 2 questions:
    1.- Simples query are working ok but I´ve problems when I try to insert functions, for example.
    Select FECHA FROM TABLA is working OK and display me '2005-03-18 00:00:00.0' etc.
    if I include: WHERE FECHA = '2005-03-18 00:00:00.0' is working OK too, but if my "WHERE" is '2005-03-18' don´t work.
    2.- When point 1 will be ok, I will need include in my "WHERE" the actual date (today)
    According to "How To Use Query Functions with the Distributed Query Engine" the first one could be of "implicit conversion" and the second  one could be "CURDATE()" but neither work.
    Any sugestions ?
    Thanks !

    Hi Aviad
    It seems that my DQE is not installed.
    This is what I got in System Administration / Distributed Query Engine:
    - Option Configuration: Blank screen
    - Option Session Manager: <b>DQE not installed</b>
    - Option Metadata Loader: Portal Runtime Error
    Is DQE installation something optional, that I might have skipped during installation? Or it is necessary some after installation procedure?
    In MSSQL I found many tables (MM_*) that belong to SAPP66MM...does it means schema for DQE is ok?
    Thanks.

  • Rows Elimination in Distributed Workbook

    Hello Forum.
    We are facing a problem in distributed workbooks, the users desire to eliminate the few rows from the report.
    Is is possible to remove / eliminate rows from the distributed query ?
    Regards
    Ashish

    Hello..
    thanks for the prompt reply..
    but let me clarify it.. we need to eliminate rows such as the rows that contains query definition in the result set, the fileterd values info , and the rows displayed between the query heading and the output.
    Regards
    Ashish

  • Linked servers query

    where can you see linked servers configured in our sql server instance, is there a SQL query? And will it list under which account the link has been configured?
    By default can everyone make use of this linked server?
    What do people setup linked servers, for what purpose do they serve?

    Linked Query configuration information
    http://support.microsoft.com/kb/203638/en-us
    For other details and security details 
    http://www.databasejournal.com/features/mssql/article.php/3691721/Setting-up-a-Linked-Server-for-a-Remote-SQL-Server-Instance.htm
    Why linked Server,
    remote access to the server
    Query distributed query on heterogeneous data source
    ---Prashanth

Maybe you are looking for

  • Firefox 4 crashes everytime I open w/W7 64bit

    installed new version, crashes every time I open. opened in safe mode but only got 3.6 version. i have windows 7 64bit, does that matter? have quite a few add ons, but why should that matter? Crash reports were sent automatically and as yet I've got

  • TS3899 How do I delete more than one email at a time from my i phone 5C

    How do I delete more than one email at a time from my i phone 5C

  • Error While creating new iview

    Hi, I am trying to create an iview in Portal 6.0 & while creating iview getting following error Portal Runtime Error <b>An exception occurred while processing a request for : iView : pcd:portal_content/com.sap.pct/admin.templates/iviews/editors/com.s

  • File upload in WebDynpro

    Hi, How uploading of a file can be done in webdynpro. I had a label 'File" with a text box and a browse button. I need to select a file and when I click the button the selected file should be attached. How we can do it in webdynpro? Thank you

  • How to create a new "key combination"

    Hi, gurus,        I need I now key combination like "sales organiztion/distribution  channel/sales office" in a conditon type. How can I set in IMG? Thanks advance.