Tagged Questions
DBVisualizer is a popular database tool by DBVis Software AB. Written in Java, it runs on Windows, Mac OSX, and Unix/Linux, and will connect to any database server.
1
vote
3answers
152 views
dbvisualizer: set max rows in a select query
I am using DBVisualizer 8.0.6 and when I run a simply query like....
select * from table
It only shows the first 1000 rows and then stops the query and displays in the bottom left corner...
"Number ...
1
vote
2answers
145 views
MySQL - Trouble with creating user defined function (UDF)
I'm trying to create this function:
CREATE FUNCTION remove_non_alphanum (prm_strInput varchar(3000))
RETURNS VARCHAR(3000)
DETERMINISTIC
BEGIN
DECLARE i INT DEFAULT 1;
DECLARE v_char ...
1
vote
0answers
320 views
Executing MYSQL Stored Procedures using DBVisualizer
I am using DBVisualizer for the first time. I have made a stored procedure in mysql database. However I am unable to execute it from DBVisualizer.
This is how the procedure looks like. Here // is ...
1
vote
1answer
509 views
Not able to query after Alter table in DB2
We have a table someone created in DB2. I have no idea how they created it. But when I edit the table, It edits just fine. But after edit I can not query the table at all THE COLUMN CANNOT BE ADDED TO ...
0
votes
1answer
72 views
Connect DbVisualizer to HSQLDB on Mac
I need to connect DbVisualizer to HSQLDB. I've installed both on my mac (OSX 10.6.9). I've installed DbVisualized 8.0.5, and HSQLDB. I have both open, but when I try to ping the server, I receive the ...
0
votes
2answers
66 views
CRUD processing with access controls to SQL Server database
We have built a large database model (SQL Server) for our client and an automated way to load the data into something like 100 database tables. Unfortunately due to time constraints (isn't this ...
0
votes
2answers
371 views
DBVisualizer/SQL Explorer will not connect to the right DB instance
I am trying to connect to a SQL Server instance in DBVisualizer on ubuntu and for some reason unknown to me it incessantly connects to the wrong instance. The target is a Windows Server that is ...
0
votes
2answers
49 views
get record count of each table?
I have 700 tables,and i want to know the record count of each table using dbvisualizer.
How can do simply and effective? help me.
0
votes
1answer
81 views
DBVisualizer query snytax to add a range of values
I need to be able to do something like this in DBVisualizer:
WHERE
Column = {12, 23, 55, 33, 22}
Instead, I am doing this
WHERE
Column = 12 OR
Column = 23 OR
Column = 55 OR
Column = 33 OR
...
0
votes
1answer
77 views
Can AS/400 Database Tables Be Hidden?
I was trying to delete a record from a table in AS/400 database. I got an error message saying that there is a referential integrity to another table XYZ in the same Schema ABC.
To my wonder, that ...
0
votes
3answers
673 views
something funny with embedded hsql
Hello good people
i'm just curious about something.I'm using hsql in myproject (embedded of course).At some time i felt the need to visualize what hibernate was generating.I took a free copy of ...