<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent posts to Discussion</title><link>https://sourceforge.net/p/tora/discussion/</link><description>Recent posts to Discussion</description><atom:link href="https://sourceforge.net/p/tora/discussion/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sun, 03 Nov 2024 21:47:23 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/tora/discussion/feed.rss" rel="self" type="application/rss+xml"/><item><title>Need help with TOra installation on macOS Sonoma</title><link>https://sourceforge.net/p/tora/discussion/52736/thread/e4c80680d5/?limit=25#a8fc</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi, I am trying to install this software on my mac but the instructions are very hard to figure out so it'd be really helpful if someone can provide step by step procedures after downloading the .tar file&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kaviya</dc:creator><pubDate>Sun, 03 Nov 2024 21:47:23 -0000</pubDate><guid>https://sourceforge.netd0c8cb8ea824d19f7d51bded68cc56fcbc61de12</guid></item><item><title>schema browser not showing all tbls -postgres</title><link>https://sourceforge.net/p/tora/discussion/52737/thread/100a3996/?limit=25#7a69</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I have logged in with Tora for postgres , with a schema ,but am not able to see the tables list, schema browser was showing Grey color, how to resolve? &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel W</dc:creator><pubDate>Thu, 09 Sep 2021 16:45:37 -0000</pubDate><guid>https://sourceforge.netd01354da2d45cd4e9cdebbbebd75ce34f2330bd2</guid></item><item><title>Launching and opening TORA connection by sending parameters to the connection interface in command line</title><link>https://sourceforge.net/p/tora/discussion/52737/thread/c1b05864cb/?limit=25#4006</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi&lt;br/&gt;
is my question unappropriate ? &lt;br/&gt;
Isn't it the right place to ask ?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Benoit Michel de Roissy</dc:creator><pubDate>Tue, 11 Dec 2018 10:20:49 -0000</pubDate><guid>https://sourceforge.netc41223c85f996409988a535917437ef9cc8b04d2</guid></item><item><title>Launching and opening TORA connection by sending parameters to the connection interface in command line</title><link>https://sourceforge.net/p/tora/discussion/52737/thread/c1b05864cb/?limit=25#7b22</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi Everyone.&lt;br/&gt;
We intend to integrate the launch of TORA to our personal remote access control application using the various parameters we need to automatically launch TORA and open the connection. Could anyone tell me if it is possible to do so ? Is there a way to use command line script to send these parameters to the TORA's connection interface ?&lt;/p&gt;
&lt;p&gt;Thanks for your replies.&lt;br/&gt;
Best regards&lt;br/&gt;
Ben.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Benoit Michel de Roissy</dc:creator><pubDate>Thu, 29 Nov 2018 16:43:09 -0000</pubDate><guid>https://sourceforge.net1b6bec5f7ccbdc5cc36395ca24767c2d7b34d367</guid></item><item><title>Oracle wallet supported?</title><link>https://sourceforge.net/p/tora/discussion/52737/thread/1326f2ef67/?limit=25#c1c1</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;I installed Tora.3.2.146.Release.64bit and cannot figure out how to use the oracle wallet with TOra. The wallet is configured and works with sqlplus. In TOra I can see connections defined in tnsnames.ora, including those associated with wallet entries. If I put / (forward slash) as user name and leave the password box empty, the connection attempt fails, complaining about the empty password. I also tried leaving the user name empty, but also to no avail.&lt;/p&gt;
&lt;p&gt;Any suggestions?&lt;/p&gt;
&lt;p&gt;Best&lt;br/&gt;
/me&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mstislav Elagin</dc:creator><pubDate>Tue, 09 Oct 2018 20:39:31 -0000</pubDate><guid>https://sourceforge.net6c78c0e8c5d2a75fb0ff389129556a195d815c25</guid></item><item><title>Problem (solved) with toSession:OpenCursor query</title><link>https://sourceforge.net/p/tora/discussion/131482/thread/381d4292/?limit=25#14ee</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The order of the selected columns is important, and currently (version 3.2) wrong.  As a consequence, the right hand side of the Open Cursors (sql text, explain plan, ...) remain empty or cause errors.  Easily solved by using the following query:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt; select SQL_Text SQL                        
       , p.child_number as chld
       , c.SQL_ID as sqlid
       , CURSOR_TYPE                        
       , LAST_SQL_ACTIVE_TIME               
       , SQL_EXEC_ID                        
 from v$open_cursor c 
 join v$sql_plan p
   on c.ADDRESS = p.ADDRESS
   and c.HASH_VALUE = p.HASH_VALUE
   and c.sql_id = p.sql_id
   and p.id = 0
 where sid = :f1&amp;lt;char[101]&amp;gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;If you prefer these columns remain hidden, change the aliases.&lt;br/&gt;
as chld =&amp;gt;  as " child_number"&lt;br/&gt;
as sqlid =&amp;gt;  as " sql_id"&lt;br/&gt;
(an alias starting with a space hides the column)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Gerard H. Pille</dc:creator><pubDate>Fri, 13 Apr 2018 10:11:12 -0000</pubDate><guid>https://sourceforge.netf9759200772ff4ff4c56e1a2b2c37bd2fc653f75</guid></item><item><title>How to fix error popup "Connection provider not loaded: MySQL"</title><link>https://sourceforge.net/p/tora/discussion/52737/thread/b48d4898/?limit=25#7a7a</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;When I click on an already defined connection for Tora v3.2.82 on 64bit Win7 then an error popup appears:&lt;/p&gt;
&lt;p&gt;"Connection provider not loaded: MySQL"&lt;/p&gt;
&lt;p&gt;How do I fix this?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Thomas</dc:creator><pubDate>Thu, 05 Apr 2018 04:24:57 -0000</pubDate><guid>https://sourceforge.net17b689fe74ce700a6f828e73eb1f0146756696ea</guid></item><item><title>Removed descriptions from toResultWaitChains (server tuning / blocking locks).</title><link>https://sourceforge.net/p/tora/discussion/131482/thread/30cff500/?limit=25#8cc3</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Sorry Ivan, only now I saw your message.  But I hate patching on GitHub, let alone patching a "partial" project.  What does that mean?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Gerard H. Pille</dc:creator><pubDate>Mon, 26 Feb 2018 10:49:46 -0000</pubDate><guid>https://sourceforge.net0298d53c8acd19d631613401b6bcd4a59525e665</guid></item><item><title>Filter dialog doesn't show columns.</title><link>https://sourceforge.net/p/tora/discussion/52737/thread/2a144775/?limit=25#199b</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Version: v3.2-82-gd124b51a&lt;br/&gt;
OS: Windows 10 Enterprise 1709&lt;/p&gt;
&lt;p&gt;I'm missing the list of table columns in the filter dialog of table data. Please check the attached screenshots.&lt;/p&gt;
&lt;p&gt;Is it possible to solve that problem?&lt;/p&gt;
&lt;p&gt;&lt;a href="https://sourceforge.net/p/tora/bugs/901/"&gt;https://sourceforge.net/p/tora/bugs/901/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dirsve</dc:creator><pubDate>Tue, 06 Feb 2018 11:48:15 -0000</pubDate><guid>https://sourceforge.netca03c9ea7f404c11c37ca015fbf950a880095e33</guid></item><item><title>Removed descriptions from toResultWaitChains (server tuning / blocking locks).</title><link>https://sourceforge.net/p/tora/discussion/131482/thread/30cff500/?limit=25#6e56</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;cau you please turn it onto a patch?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ivan Brezina</dc:creator><pubDate>Sun, 31 Dec 2017 08:40:35 -0000</pubDate><guid>https://sourceforge.netb0911b16f53b395aa6bc6136d2d1d64470949632</guid></item></channel></rss>