Gateway and database in a different oracle_home

Hi:
  my env : rhel5.8  oracle10G x86_64
  the gateways 's version is  oracle11g
  so I install the gateway into  another path
  How to I configure the listener?
  I mean which listenr.ora should I configure .
[oracle@server1 bin]$ pwd
/opt/app/product/11.2.0/dbhome_1/bin
[oracle@server1 bin]$ ./lsnrctl start listerner1
LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 04-JUL-2013 16:45:40
Copyright (c) 1991, 2009, Oracle.  All rights reserved.
Starting /opt/app/product/10.2.0/db_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 10.2.0.5.0 - Production
System parameter file is /opt/app/product/10.2.0/db_1/network/admin/listener.ora
11g lsnrctl used 10g's tnslsnr  and listener.ora ,
thanks.

I created another user to install oracle11g gateways ,
but still has problem
odbc trace
[SQLSetConnectAttr.c][295]Error: SQL_INVALID_HANDLE
[SQLGetDiagRec.c][524]Error: SQL_INVALID_HANDLE
gateway debug log
SQLGetDiagRec returns rc=-2 (SQL_INVALID_HANDLE) for handle ef29e60 (SQL_HANDLE_DBC)
Call to SQLDiagRec for Environment handle 0xef25cb0returns -2 (SQL_INVALID_HANDLE)
Exiting hgopoer, rc=0 at 2013/07/05-11:33:00 with error ptr FILE:hgopoer.c LINE:188 FUNCTION:hgopoer() ID:GetDiagRec err
or
hgolgon, line 261: calling SQLSetconnectAttr got sqlstate
Exiting hgolgon, rc=28500 at 2013/07/05-11:33:00 with error ptr FILE:hgolgon.c LINE:261 FUNCTION:hgolgon() ID:Connection
Attribute: AUTOCOMMIT
Entered hgoexit at 2013/07/05-11:33:00
Exiting hgoexit, rc=0
~
~
/etc/odbc.ini
[mysqldb]
Driver = /usr/lib64/libmyodbc5w.so
Server = 10.10.1.21
User = root
Password = asdf1234
Port = 3306
database = mktdb
TraceFile=/tmp/sql.log
Trace=yes
listener.ora
DG1=
(DESCRIPTION_LIST=
  (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=server1)(port=1522)))
SID_LIST_DG1=
  (SID_LIST=
   (SID_DESC=
     (SID_NAME=mysqldb)
     (ORACLE_HOME=/opt/oracle/app/product/11.2.0/db_1)
     (PROGRAM=dg4odbc)
     (ENVS="LD_LIBRARY_PATH=/opt/oracle/app/product/11.2.0/db_1/lib:/usr/lib64:/usr/lib")
initmysqldb.ora
HS_FDS_CONNECT_INFO = mysqldb
HS_FDS_TRACE_LEVEL=4
HS_LANGUAGE=AMERICAN_AMERICA.WE8ISO8859P1
HS_FDS_SHAREABLE_NAME =  /usr/lib64/libmyodbc5w.so
#HS_FDS_SQLLEN_INTERPRETATION=32
HS_LONG_PIECE_TRANSFER_SIZE=1258291
set ODBCINI=/etc/odbc.ini

Similar Messages

  • Service name and database name are different.

    Hi,
    I had created a database with name PROD, latter i changed DB name to PRODT as per management request.
    But i notice the following things.
    1. At OS level ORACLE_SID variable is still PROD.(.bash_profile too have this entries)
    2. From sql prompt DB_NAME is PRODT.
    3. In Listener service name is showing PRODT and instance name is PROD.
    can any one please explain me, why oracle is behaving like this.
    Our all the applications are working fine with out any issues till now.
    [oracle@qual ~]$ echo $ORACLE_SID
    PROD
    [oracle@qual ~]$ sqlplus '/ as sysdba'
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Mar 5 10:35:01 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 608174080 bytes
    Fixed Size 1220868 bytes
    Variable Size 209719036 bytes
    Database Buffers 394264576 bytes
    Redo Buffers 2969600 bytes
    Database mounted.
    Database opened.
    SQL> select name from v$database;
    NAME
    PRODT
    SQL> !lsnrctl status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 05-MAR-2013 10:38:30
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=qual.com)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date 05-MAR-2013 10:36:54
    Uptime 0 days 0 hr. 1 min. 35 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /u001/app/oracle/product/10.2.0/network/admin/listener.ora
    Listener Log File /u001/app/oracle/product/10.2.0/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=qual.com)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PRODT" has 1 instance(s).
    Instance "PROD", status READY, has 2 handler(s) for this service...
    Service "PRODT_XPT" has 1 instance(s).
    Instance "PROD", status READY, has 2 handler(s) for this service...
    The command completed successfully
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    [oracle@qual ~]$

    Hello,
    I had created a database with name PROD, latter i changed DB name to PRODT as per management request.Using NID ?
    But i notice the following things.
    1. At OS level ORACLE_SID variable is still PROD.(.bash_profile too have this entries)ORACLE_SID is the instance name. Changing DB name does not change the instance name. You can manually change it by creating a new PFILE/SPFILE and Password file for the new instance.
    2. From sql prompt DB_NAME is PRODT.Yes, as you have changed the DB name from PROD to PRODT.
    3. In Listener service name is showing PRODT and instance name is PROD.Database name is PRODT and the instance associated with it is PROD. There can be multiple instances for a single database.
    Regards,
    Shivananda

  • Operating System And Database Patch

    Hello everyone,
    Does Sap have a specific note about operating system and database patch management? It is important for
    me for applying operating system and database patches.

    I'm not exactly sure what you're asking about but usually the operating system vendors have to make sure that applications work as before after a patch.
    Since SAP applications run on many different combinations of operating systems and databases together with different kernels and/or database clients it's impossible to test them all in all combinations.
    SAP has no notes with "don't use Hotfix A,B,C on your Windows machine together with Hotfix D or E on the database server"; known issues are listed in the notes for the patches themselves (on the vendors websites, not SAP).
    Markus

  • Two database with the same sid but different ORACLE_HOME on one host

    two database with the same sid but different
    ORACLE_HOME on one host,and if configure them with
    two differnt lisnter staticaclly,this abosultely work
    because in the lisnter.ora we must provice
    ORACLE_HOME variable,with this ORACLE_HOME the client
    can differentiate which database to connect,but if
    use dynamically register feature,how can the client
    tell which database to connect?

    Also note that this type of configurtion may not be supported.
    Just because a given configuration works in certain given conditions does not mean that it would be supported.
    If this setup is for a configuration that has any value, please also Contact Oracle Support to get their inputs on what you are trying to accomplish.

  • How to access sysobjects and syscolumns on a different database?

    I'm attempting to write a script that iterates over all tables and their columns in all databases resident to a SQL Server connection. I can do either of these but cannot figure out how to merge the two together. The problem is that at the time that the
    table/column information is collected, it comes out of the system tables of the current default database and I can't quite figure out how to change default databases in a way that is acceptable under the current conditions. I can't create and write to the
    many database new stored procedures to handle the changing of default database and I don't want to use undocumented functions.
     but am having trouble prizing the information out of sysobjects, syscolumns and systypes on databases that are not currently the current database in use in order to find all occurrences of some string in all databases, no matter what table or
    column that string resides. One of the things making it harder is that I do not want to generate stored procedures on the fly and add them to the databases being probed so everything has to be accomplished either directly or by executing a sql string.
    There are two obvious approaches to the problem -
    1) Change the current database (Like 'use @DBNameVar' only something that actually works)
    2) Directly access sysobjects, syscolumns and systypes in a different database
    Here's what I have so far - I have figured out how to make a cursor that will list all of the databases and can load that database name into a string variable and I know how to get a listing of all of the tables and columns within a database. I have another
    piece of script that does a great job of probing all of the columns in all of the tables for a string.
    Will the systables allow access if their database is not the current database? If so, what is the syntax? Can you show me what I need to do in my table/column iteration script? Assume, for example, that @DBNameVar contains the name of the database that needs
    to be probed. What is the syntax that will combine that database name with the following script which lists all of the tables/column?
    DECLARE cCursor CURSOR LOCAL FAST_FORWARD FOR
    SELECT
    '[' + usr.name + '].[' + tbl.name + ']' AS tblName,
    '[' + col.name + ']' AS colName,
    LOWER(typ.name) AS typName
    FROM
    -- How can a sysobjects from another database be specified????
    sysobjects tbl
    INNER JOIN(
    syscolumns col
    INNER JOIN systypes typ
    ON typ.xtype = col.xtype
    ON col.id = tbl.id
    LEFT OUTER JOIN sysusers usr
    ON usr.uid = tbl.uid
    WHERE tbl.xtype = 'U'
    AND LOWER(typ.name) IN(
    'char', 'nchar',
    'varchar', 'nvarchar',
    'text', 'ntext'
    ORDER BY tbl.name, col.colorder
    Richard Lewis Haggard

    In addition to Latheesh and Tom solutions, I modified your code to use dynamic sql. It's just a different solution:
    --first create table
    CREATE TABLE tbl ( tblName sysname, colName sysname, typName sysname ) ;
    GO
    --now populate it with dynamic sql
    DECLARE @sql NVARCHAR(max) = N'';
    ; WITH db AS (
    SELECT name
    FROM sys.databases
    SELECT @sql = @sql +
    N' INSERT dbo.tbl ( tblName, colName, typName )
    SELECT
    QUOTENAME(usr.name) + ''.'' + QUOTENAME(tbl.name) AS tblName,
    QUOTENAME(col.name) AS colName,
    LOWER(typ.name) AS typName
    FROM
    -- How can a sysobjects from another database be specified????
    ' + QUOTENAME(db.NAME) + N'.sys.sysobjects tbl
    INNER JOIN(
    ' + QUOTENAME(db.NAME) + N'.sys.syscolumns col
    INNER JOIN ' + QUOTENAME(db.NAME) + N'.sys.systypes typ
    ON typ.xtype = col.xtype
    ON col.id = tbl.id
    LEFT OUTER JOIN ' + QUOTENAME(db.NAME) + N'.sys.sysusers usr
    ON usr.uid = tbl.uid
    WHERE tbl.xtype = ''U''
    AND LOWER(typ.name) IN(
    ''char'', ''nchar'',
    ''varchar'', ''nvarchar'',
    ''text'', ''ntext''
    ORDER BY tbl.name, col.colorder ;
    ' + NCHAR(13)
    FROM db ;
    PRINT @sql ;
    EXEC ( @sql );
    SELECT *
    FROM tbl ;
    sqldevelop.wordpress.com

  • Different values on form and database

    hi all
    i have a field which counts the number of rows
    on the form which is showing a different value (which is correct)
    and in the database it is showing a different value (incorrect)
    i have issued commit
    i am not understanding why this is happening ..
    please help me
    Mandar

    listening for the first time but u r facing the problem, reconfirm that the query/properties are correct in form properties, check it by creating new form module for just checking weather it is showing correct in that form. and c if there is when_new_form_instance trigger or When_Validate_windows trigger used for some execution. and one more thing just check if u didnt change the column and create it again and database type is NO ( properties )

  • About listeners for different databases in the same ORACLE_HOME

    Hello experts, I have a doubt
    I have installed 3 different databases in the same server which OS is Suse Enterprise 10. At this moment I have just one listener that registers all the services. The number of connections are big for two of the three databases so I do not know what might be the best practices for this environment. I have some question I would like you suggestion for me:
    DB version: 11.1.0.7
    Should I have three listener, one for each database?
    Is a good practice to have only one listener for multiple instances in the same server?
    Are there differents between have only one listener for all the instance and have one listener for instance?
    What about the performance?
    Than you in advance, I hope you can guide me.

    Best practice is not to have multiple databases on one server, depending on resources.
    Should I have three listener, one for each database?
    No. That is pretty undesirable and requires more administration.
    Is a good practice to have only one listener for multiple instances in the same server?
    Yes. Remember the listener is only a broker and there are no permanent connections between client, listener and database.
    Are there differents between have only one listener for all the instance and have one listener for instance?
    Yes. The latter is an administration nightmare.
    What about the performance?
    Who cares? The only factors are
    listener.log becomes too big --> set up proper cleanup procedures
    The number of semaphores is exceeded (Unix) or no more threads can be created (Microsoft winblows), which will give rise to ora-12500.
    Sybrand Bakker
    Senior Oracle DBA

  • How to create User and Database in different Table spaces

    How to create User and Database in different Table spaces using oracle 10g
    Regards
    daya

    I am sorry but your question does not seem to make much sense.
    Can you please rephrase your question?

  • RD Gateway and RD Web Access - better together or on different servers?

    I am evaluating Remote Desktop Services with 2012 R2 and initially I had all the roles on 1 server for testing.  I began thinking it would be a better setup to split the RD Gateway role and the RD Webaccess role into different servers for security purposes.
     This way I could expose only the RD Gateway to the internet and the Web Access role would not be exposed.  In all my reading and searching it seems that nearly every article I come upon has both RD Gateway and Web Access installed on the same system.
    What is the ideal setup from a security standpoint to have the these two roles separate or does it not mater?  If it does not mater then I will setup 1 server with Gateway and Web Access and I will then have other servers for licensing, broker, session
    host, and visualization host once I move this into production.
    If these roles are on the same system how do I know if the gateway role is doing anything?  Is the FQDN\rdweb the correct URL to use even when the gateway is implemented?  
    If they are separate how do I tell the gateway and web access servers to use each other?  

    Hi,
    As far as I know, it’s fine to have RD Gateway and RD Web Access roles installed on the same server.
     “Normally external users would log on to RD Web Access via tcp port 443, click on a RemoteApp and connect to RD Gateway via
    tcp 443/udp 3391, RDG connects them to RDCB on tcp 3389 which redirects them to a RDSH server, finally the RDG connects to the RDSH on tcp 3389/udp 3389.”
    Quoted from TP in this post below:
    RD Gateway and RD web issue
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/5ab40559-23f7-4ebc-b60d-87375cc55674/rd-gateway-and-rd-web-issue?forum=winserverTS
    More links below for you:
    RD Gateway deployment in a perimeter network & Firewall rules
    http://blogs.msdn.com/b/rds/archive/2009/07/31/rd-gateway-deployment-in-a-perimeter-network-firewall-rules.aspx
    Remote Desktop Gateway/Web Server Placement
    https://social.technet.microsoft.com/forums/windowsserver/en-US/b2970cf5-a5b5-494c-88b7-cd6e01f84bb6/remote-desktop-gatewayweb-server-placement
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • MySql database and php code on different servers

    I created a table on a MySql database on server A. Now I'm
    trying to create
    a page to display the contents of the table. I know that the
    html code ( and
    php) is on a different server (server B). I managed to create
    a database
    connection however when I try this connection I cannot see
    the table I
    created. When I click on the Connection name I get the Stored
    Procedures,
    Tables and View list. I click on the Tables and although I
    get a connection
    to the server A, no table is displayed.
    Am I trying to do something silly here?
    any help will be appreciated.
    Twanny

    > Am I trying to do something silly here?
    I do it this way all the time. My testing server is local to
    my development
    LAN, but the MySQL server and database is remote (on the
    remote site). To
    make this work, you would have to make sure that the remote
    server permits
    an external connection. If it does, you should be golden.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Twanny" <[email protected]> wrote in message
    news:gabbu1$ngv$[email protected]..
    >I created a table on a MySql database on server A. Now
    I'm trying to create
    >a page to display the contents of the table. I know that
    the html code (
    >and php) is on a different server (server B). I managed
    to create a
    >database connection however when I try this connection I
    cannot see the
    >table I created. When I click on the Connection name I
    get the Stored
    >Procedures, Tables and View list. I click on the Tables
    and although I get
    >a connection to the server A, no table is displayed.
    >
    > Am I trying to do something silly here?
    >
    > any help will be appreciated.
    >
    >
    >
    >
    > --
    > Twanny
    >

  • What are different between gateway and mangement server in scom ?

    Hi all,
    can anyone let me know What are different between gateway and mangement server in scom ?
    thanks,
    Sengottuvel M

    Hi,
    Hope this can answer you question
    About Gateway Servers in Operations Manager
    http://technet.microsoft.com/en-us/library/hh212823.aspx
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Essbase and database in different server

    Hi,
    It is possible to put the ESSBASE in one server and database(oracle , SQL Server) in another server? It is possible, what are the things i want to do?
    Thanks,
    PC

    Hi,
    Assuming that you've got powerful boxes for this purpose, if you are going to use database server just as a repository database server for say, Planning, then that's fine to have essbase and rdbms on the same server. However, it's not advisable to have essbase on a server where a heavy datawarehouse is co-hosted.
    Alp

  • How do I create multiple databases on the same ORACLE_HOME

    Hi,
    I would like to know how can I create 2 databases on the same ORACLE_HOME? Also is it possible to start both databases at the same time?
    When I installed oracle,a directory named database has been created under ORACLE_HOME, which contains all initorc1.ora ,etc ?
    At this point how do I create another database named orc2 on the same machine?
    Thanks in advance.
    winnie philip.

    Hi,
    Set the oracle_sid=db1
    Now rename your init.ora to init<oracle_sid>.ora in $oracle_home/dbs directory.
    Change the db_name parameter to appropriate name in the init<oracle_sid>.ora file.
    Now create the database.
    In the same fashion create another database with the new database name and different oracle_sid
    Now in order to switch between the databases.
    Change the env variable Oracle_Sid to the value of the database which you wanted to start.
    Regards
    Anand

  • Clarification on differences between Gateway and Generic Services

    Hi
    I am trying to connect an MS SQL Server 7.0 on NT database to Oracle 8.1.7 Release 3.
    Can I use the standard Oracle Heteregeneous Services OR do I HAVE to use the Transparent Gateway for SQL Server?
    The documentation implies that the standard Hetegeregeous services bundled with 8i allow you to connect to any ODBC data source (although it constantly only makes reference to Access, Foxpro etc).
    I have successfully connected to MS Access and MS Project using Oracle Heteregeneous Services but am running into problems connecting to MS SQL 7.0. (I cannot get the 8i listener to recognize the hsodbc service, I get an Ora-12154).
    A definitive answer will be most appreciated.
    Thanks,
    Charles Farnell.
    [email protected]

    Vira
    Thanks for your post. I have listed below my tnsnames.ora (partial), listener.ora (partial), inithsodbc.ora and database link DDL. I found a post on Metalink that says the SQL Server machine has to have the Oracle client installed, if this is the case then that could be my problem. Also, it mentioned the PORT in tnsnames.ora should be set to 1433 (the default port for SQL Server). I have tried 1521 and 1433.
    If you could look at these and see if there are any obvious mistakes , I would be most grateful.
    ERROR OUTPUT (item is a table in SQL Server)
    ============
    SQL*Plus: Release 8.1.7.0.0 - Production on Mon Apr 8 16:45:16 2002
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to:
    Oracle8i Enterprise Edition Release 8.1.7.1.1 - Production
    With the Partitioning option
    JServer Release 8.1.7.1.1 - Production
    SQL> select * from item@hsodbc;
    select * from item@hsodbc
    ERROR at line 1:
    ORA-12154: TNS:could not resolve service name
    SQL>
    TNSNAMES.ORA
    ============
    hsodbc =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = tcp)(HOST = sqlservermachine)(port=1521))
    (CONNECT_DATA =
    (SID = hsodbc) <== needs to match the sid in listener.ora.
    (HS=OK) <== HS clause goes in the description.
    LISTENER.ORA
    ============
    (SID_DESC =
    (SID_NAME = hsodbc
    (ORACLE_HOME = E:\oracle\ora81)
    (PROGRAM = hsodbc)
    INITHSODBC.ORA
    ==============
    # This is a sample agent init file that contains the HS parameters that are
    # needed for an ODBC Agent.
    # HS init parameters
    HS_FDS_CONNECT_INFO = sqlservermachine.TRN_770B
    HS_FDS_TRACE_LEVEL = 4
    HS_FDS_TRACE_FILE_NAME = hsodbc.trc
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>
    DATABASE LINK
    =============
    CREATE DATABASE LINK hsodbc
    USING 'hsodbc'
    SQLNET.ORA
    ==========
    # SQLNET.ORA Network Configuration File: e:\oracle\ora81\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    #SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)

  • Installation of EBS 12.1 and Database on the same server

    Hi,
    Due to resource crunch, I would like to do new installation of EBS 12.1 and Database on the same server where already EBS 12.1 and Database installed.
    I have one server where EBS 12.1 and Database installed (Single node installation).
    Now I want to create another environment for other purpose (another test env.). But I don't have another server .
    So Can I start new installation of EBS 12.1 and database on the same server ?
    I have enough space and memory on server.
    Are the installtion conflict with each other ? any implications happen on the first environment ?
    I want my first environment run fine without any prob., after installing EBS and DB on the same server.
    Please guide me.
    Regards,
    Sanjay Patel

    So Can I start new installation of EBS 12.1 and database on the same server ?
    I have enough space and memory on server.Yes you can as long as you have sufficient resources.
    Are the installtion conflict with each other ? any implications happen on the first environment ? If you install in different ORACLE_HOMEs you should be OK.
    Thanks,
    Hussein

Maybe you are looking for

  • Why is the content of a fillable field missing?

    I enter data in the fillable fields and save the document as a pdf file. I sent it to someone who opens it using an iPhone or iPad and the content of the fields is not visible.

  • Oracle Connection Manager

    Hi, i'm having a problem configuring Oracle Connection Manager. It does start the instance of connection manager Summary of my environment is 10g Application server and infrastructure machine OS: Windows 2003 9i Database Server: Windows 2003 Client :

  • Why do my monitor stay in sleep mold?

     Monitor Status shows: I havea HP 2009 m monitor and Pavilion Slimline s5220f pc, when I turn on my monitor it keeps on say DVI: no signal, VGA:no signal, Auto-switch Sourcen,DefaultSource: DVI-DIGITAL and the  monitors reads, monitor going to sleep.

  • CLOB to BLOB

    Hi, I have a database (9.2.0.8) with CLOB which contains word documents (mistake, I know) When I migrate to 10g (exp/imp) my .doc are no more readable how can I transform my CLOB to BLOB so they stay readable when exp/imp to a 10g database ? Thanks i

  • Display items left to right & limit items per column

    Hopefully these actually ARE basic questions with simple answers. 1. By default requested values of repeating nodes stay in a vertical table setting. How do you to display a repeating spry {values} in a horzonital format?      EX: Left to right <p />