Blogroll
Search
Categories
Forums
Author Archives: Paul
Creating Domino Test Server in ActiveGrid
Desired Outcome Create a Domino Test Server in ActiveGrid by copying over Application folder and Data folder; running the Domino 8.5.3. Server and Fixpack; doing an in-place Server upgrade to Domino 10. This will simulate the actual migration and upgrade … Continue reading
Querying the database – looking up stuff
Note: This is the part where I might do most of my entries — searching for stuff within the database. Not quite running reports — that’s later. Select (variable name) from (table name) — returns all records For example: Select … Continue reading
Create southwind database and table
CREATE DATABASE southwind; /*creates a new database and names it*/ SHOW DATABASES; /*displays all databases*/ USE southwind; /*tells mysql which database you want to work with*/ SELECT DATABASE; /*tells you which database has been selected*/ SHOW TABLES; /*displays any tables … Continue reading