I am trying to run a startup script in Aqua Data Studio when a user logs in to any database. I understand that the process for this is to go to Script in the Server Registration box and write the SQL scripts/queries you would want to run when connected. I tried to retrieve the count of a small table (2 rows), but I cannot see the results anywhere when I connect to it and open a new Query Analyzer window. Is there a specific place where I can view these results that is not immediately apparent? Please help.
Aqua Data Studio Server Registration Scripts
847 Views Asked by CodingInCircles At
1
There are 1 best solutions below
Related Questions in DATABASE
- When dealing with databases, does adding a different table when we can use a simple hash a good thing?
- How to not load all database records in my TListbox in Firemonkey Delphi XE8
- microsoft odbc driver manager data source name not found and no default driver specified
- Cloud Connection with Java Window application
- Automatic background scan if user edit column?
- Jmeter JDBC Connection Configuration Parametrization of Database URL for accessing SQL Database
- How to grant privileges to current user
- MySQL: Insert a new row at a specific primary key, or alternately, bump all subsequent rows down?
- Inserting and returning autoidentity in SQLite3
- Architecture: Multiple Mongo databases+connections vs multiple collections with Express
- SQL - Adding a flag based on results within a query - best practice?
- Android database query not returning any results
- Developing a search and tag heavy website
- Oracle stored procedure wrapping compile error with inline comments
- Problems communicating with mysql in php
Related Questions in SQL-SCRIPTS
- controlling hibernate sql script run
- Memory allocation failed: How to combine four result sets into one table
- how to export results to CSV in a loop
- Aqua Data Studio Server Registration Scripts
- How to get the SQL Server script error in a batch File
- SQL Script: Updating a column with another table pivoting on an ID
- getting mathematical operation of tow result in sql
- Run SQL script on the server from within SQL developer on the client?
- How to select rows which have same set of values in two columns and hence concatenate the values in the third column?
- Is it possible to write a SQL script for both MySQL and PostgreSQL?
- mysql performance website tables
- Need help to execute sql scripts within stored procedure
- SQL script that automatically detects free appointments in MySQL database
- data.sql script for a H2 database is executing after my application is running for SpringBoot
- How to view .bak file from DATABASE BACKUP in SQL Server on Docker
Related Questions in AQUAFOLD
- Convert ER-Win model to Aqua Data Studio
- Aqua Data Studio Server Registration Scripts
- Aqua Data studio, compare results, column names case-sensitive
- Viewing query results with a parameters in Oracle
- How to open Query Analyser (window) in Aqua Data
- Aqua Data Studio alternative
- Sybase SQL stored procedure consumes too much memory
- How to export registered servers passwords in Aqua Data Studio?
- Aqua Data Studio Macro possible?
- How export registered servers settings in Aqua Data Studio?
- Can Aqua Data Studio automatically connect to a database on startup?
- How to execute SQL queries from text files
- TOAD vs AquaFold - Connecting to Oracle
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The Scripts tab in the Server Properties, is more suited for SQL to change the Database or Schema. For e.g. For MSSQL Server, if your default database in the Server Connection is MASTER and you want to change to a database named NORTHWIND, you would need to enter USE NORTHWIND in the Scripts tab. It is not suited to run queries and view the results. This is useful if you want to perform some initialization. One thing you can look for is the FluidShell. See link here.
In server properties, next to the "Script" tab, there is a tab called "FluidShell". If you enter your startup script there and then launch FluidShell (by right clicking on your registered server > FluidShell), you'll see the script being executed and its output displayed.