Tagged Questions
The squirrel-sql tag has no wiki summary.
10
votes
8answers
99k views
Java: “Could not find the main class. Program will exit”
I'm trying to run SQuirreL SQL.
I've downloaded it and installed it, but when I try to run it I get this error message:
Java Virtual Machine Launcher.
Could not find the main class.
Program ...
2
votes
2answers
745 views
Create/replace trigger in Squirrel
I use squirrel 3.2.0
When I try to replace this trigger:
CREATE OR REPLACE TRIGGER crw_ins_trig
BEFORE INSERT OR UPDATE ON crew
FOR EACH ROW
DECLARE
BEGIN
if (:new.crw_id is null) then
...
2
votes
2answers
692 views
How to call a stored procedure using a ref cursor on oracle with squirrel
I'm trying to do the same request i'm using in Toad
(the store proc signature is two varchar2 parameter and one REF CURSOR parameter)
Here is what I do with Toad
variable myCursor refcursor;
EXEC ...
1
vote
2answers
91 views
Debug SQL queries in SQuirrel-sql
How do I go about debugging a SQL statement in SQuirrel-sql?
I keep getting "unhelpful" errors like:
Error: [SQL0104] Token , was not valid. Valid tokens: ) OR.
SQLState: 42601
ErrorCode: -104
...
1
vote
2answers
974 views
Calling an Oracle stored procedure in Squirrel SQL
I was able to create a stored procedure for an Oracle database, but now I can't figure out how to run it. I'm using SQuirrel SQL and this worked to create the procedure:
CREATE OR REPLACE PROCEDURE ...
1
vote
1answer
1k views
How can I call a DB2 stored procedure with out parameters from SQuirreL SQL?
I really like SQuirreL SQL as a SQL query tool, but I've never been able to get it to call stored procedures in our AS/400 DB2 database. I always get the error "The number of parameter values set or ...
1
vote
2answers
2k views
Executing SQL Server stored procedure in sql squirrel
i'm in ubuntu 9.04 and using sql squirrel as my sql client. i connect to a remote SQL Server. There are some stored procedures in the db. I don't know how to execute them. No explicit gui. Earlier i ...
1
vote
2answers
2k views
Increasing Heap size for SQuirreL SQL on Max OS X
I'm running SQuirreL SQL (2.6.8) on Max OS X.
I'm running out of heap space when trying to create a Table script.
Can anyone tell me how to configure SQuirreL SQL to start up with a higher jvm heap ...
1
vote
3answers
1k views
Good database client (MS SQL Server) with auto-complete, small memory foot-print and free?
Any sugestions?
Currently I'm using Squirell but it consumes quiet a bit of memory... I just use the sql client to run some queries and get the result but i absolutely need auto-complete of tables, ...
0
votes
3answers
54 views
Access a firebird embeed database using squirrel
I am using an application that apparently uses the firebird as database.
I believe this because in the app directory, I found the files firebird.conf and firebird.msg. The data file is called ...
0
votes
1answer
77 views
How to translate CCSID 65535 in SQuirrel from a DB2 on an iseries
I am new to SQuirrel SQL. I need some help to translating CCSID 65535 into ASCII, UNICODE (or anything human readable)
I am using the JDBC driver per the following guide.
According to IBM's ...
0
votes
0answers
10 views
Can squirrel remember the column layouts of the Content tab?
I've started using squirrel and generally like it. But one thing that bugs me is that it doesn't seem to remember when I've rearranged how a table looks in the Content tab. If I'm looking at a table ...
0
votes
1answer
45 views
In Squirrel, how can I duplicate a row?
In a tool like SQL Developer, I can right click on a row and select duplicate to get a copy of row, edit it, and commit it. How can I do this in Squirrel? I don't even see how to add a new row in the ...
0
votes
1answer
38 views
Query for an exact match for a string in to a column having text fields(more then one strings)
In my data base table i have a field "description" which is a text field. it contains values like it :
This bracelet is composed of round diamond surrounded by milgrain detailing. Its secure setting ...
0
votes
2answers
702 views
Username & Password in JDBC Connection URL
I was using a SQuirrel SQL Client to connect & browse my oracle database servers. I have given the credentials in the connection URL itself. But it still prompts for the username and password. ...
0
votes
1answer
175 views
How to insert asian characters using Squirrel Sql
I'm running Squirrel-SQL on Ubuntu.
I cannot write chinese characters on Squirrel, but I can write them in another text editor and copy+paste into squirrel. However, when I run the update and select ...
0
votes
1answer
224 views
Squirrel sql client session timeout problem
It is not related to whatever version it is, just working to find out how to change (of course increase) session timeout value of Squirrel Sql Client. Because I really get bored of getting kind of ...
0
votes
2answers
381 views
How can I list all tables in a database with Squirrel SQL?
I use Squirrel SQL to connect to a JavaDB/Derby database on my desktop. I can run SQL queries.
But how can I list all tables in the database? And preferably all column and column types.
0
votes
1answer
560 views
create a mysql stored procedure in squirrel sql
I'm using squirrel sql 3.1 to create a store procedure on a mysql db. The sp works fine when I create it with other clients, but when i try with squirrel sql it gives me a bunch of errors. I tried to ...
0
votes
3answers
443 views
Does Squirrel SQL or Oracle have a way to alias table names in queries?
I'm using Squirrel SQL with Oracle. I often have to write quick queries for tables with longish names. It would be nice if I could give aliases to them and write queries like "select * from ft where ...
0
votes
1answer
271 views
squirrel-sql : no sequence options
I've installed Squirrle and connect to DB2.
Yet in my install I don't get the tree node for "sequences".
I get...
ALIAS
HIERARCHY TABLE
INOPERATIVE VIEW
MATERIALIZED QUERY
NICKNAME
SYSTEM TABLE
...
0
votes
1answer
663 views
generate sql script from tables
is it possible to generate sql scripts from for all tables ? i want to generate the sql script and import into another database server
0
votes
3answers
1k views
Issues Creating SQL Server triggers using SQuirreL SQL Client
Recently I have been working with a SQL Server database and I was trying to create some triggers for some tables using SQuirreL SQL Client and for some reason I was unable to get rid of the following ...