• skip to content

andunix.net

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: andunix.net ยป sql
Trace:

sql
Please note, that this is an old archived version of this site. Check out the new version at andunix.net!

Search

You can find the results of your search below.

Exact match
  • Exact match
  • Starts with
  • Ends with
  • Contains
Any namespace
  • Any namespace
  • info (14)
  • tag (1)
  • wiki (1)
  • z (1)
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • mysql
  • sql
  • sqlplus
  • MySQL
  • andunix Infos
  • Oracle: SQLplus Scripting
  • MySQL: Backup
  • MySQL: Create Database
  • Database Administration
  • MySQL: Remove Database
  • andunix Infos
  • MySQL: Grant Permissions
  • Permission Administration
  • MySQL: Revoke Permissions
  • andunix Infos
  • MySQL: View Permissions
  • MySQL: Create User
  • User Administration
  • MySQL: Change Password
  • MySQL: Remove User
  • andunix Infos

Fulltext results:

Travian Map Download Script @z:travian
27 Hits, Last modified: 13 years ago
is is my script(s) which I use to downoad the map.sql from Travian and import it to the database. ====... n DUMP_DIR=/srv/glassfish/domains/domain1/docroot/sql # # executables MYSQL="/srv/mysql/bin/mysql --def... url='http://welt7.travian.de/map.sql' ;; org) url='http://www.travian.org/map.sql' ;; *) ec
MySQL: Create User @info:mysql:user
4 Hits, Last modified: 10 years ago
Create User ====== ==== Create User ==== <code sql> CREATE USER '{user}'@'%' IDENTIFIED BY '{passwd}... ==== * Usually, ''{user}'' == ''{db}'' <code sql> CREATE USER '{user}'@'%' IDENTIFIED BY '{passwd}... {user}'@'%'; </code> Simpler Alternative: <code sql> CREATE DATABASE IF NOT EXISTS `dbname` DEFAULT C... LL ON `dbname`.* TO 'dbuser'@'dbhost' IDENTIFIED BY 'dbpass'; </code> {{tag>admin database mysql sql}}
Oracle: SPFile and PFiles @info:oracle
4 Hits, Last modified: 13 years ago
File, just enter the following in SQLplus: <code sql> CREATE PFILE FROM SPFILE; </code> It will creat... to the PFile instead of ${PATH_TO_PFILE}. <code sql> SHUTDOWN IMMEDIATE; STARTUP NOMOUNT PFILE='${PAT... itweb.ora'', the the second line would be: <code sql> STARTUP NOMOUNT PFILE='/db/oracle/config/pfiles/... he init param in memory and in the SPFile. <code sql> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE=8G S
Oracle: List Accounts with Objects @info:oracle
3 Hits, Last modified: 13 years ago
ts (like tables), you can query them with: <code sql> SELECT DISTINCT OWNER FROM DBA_OBJECTS ORDER BY ... ist all accounts, you can query them with: <code sql> SELECT USERNAME FROM ALL_USERS ORDER BY USERNAME; </code> Or, if you only want the DBAs: <code sql> SELECT USERNAME FROM DBA_USERS ORDER BY USERNAME
MySQL: Remove User @info:mysql:user
3 Hits, Last modified: 13 years ago
Remove User ====== ==== Remove User ==== <code sql> DROP USER '{user}'@'%'; </code> ==== Remove Use... Database ==== * Usually, {user} == {db} <code sql> DROP USER '{user}'@'%'; DROP DATABASE '{db}'; </code> {{tag>admin database mysql sql}}
MySQL: Create Database @info:mysql:database
3 Hits, Last modified: 13 years ago
Database ====== ==== Create Database ==== <code sql> CREATE DATABASE IF NOT EXISTS `{db}`; </code> =... e Database and Grant Rights to a User ==== <code sql> CREATE DATABASE IF NOT EXISTS `{db}`; GRANT ALL PRIVILEGES ON `{db}` . * TO '{user}'@'%'; </code> {{tag>admin database mysql sql}}
MySQL: Change Password @info:mysql:user
3 Hits, Last modified: 12 years ago
lace ''{user}'' with the name of the user. <code sql> GRANT USAGE ON *.* TO '{user}'@'%' IDENTIFIED BY... r you can alternatively use the following: <code sql> UPDATE mysql.user SET Password=PASSWORD('{passwd}') WHERE User='{user}'; FLUSH PRIVILEGES; </code> {{tag>admin database mysql password sql}}
sql @tag
3 Hits, Last modified: 12 years ago
====== sql ====== ===== Pages ===== {{topic>sql&nouser&tags}} ===== Bookmarks ===== {{rss>http://www.andunix.net/link/rss/all/sql}}
Oracle: Resize Instance @info:oracle
3 Hits, Last modified: 13 years ago
, change the [[spfile_and_pfiles|SPFile]]: <code sql> ALTER SYSTEM SET pga_aggregate_target = 2G SCOPE... (optionally) export the SPFile to a PFile: <code sql> CREATE PFILE FROM SPFILE; </code> Finally, reboot the instance to activate the change: <code sql> SHUTDOWN IMMEDIATE; STARTUP; </code> {{tag>admi
MySQL: Backup @info:mysql:database
2 Hits, Last modified: 13 years ago
ble -u${USER} -p${PASS} ${DB} > ${DB}_${DATE_YMD}.sql & bzip2 ${DB}_${DATE_YMD}.sql & # sleep 10 # optional done wait # for child processes to end <
MySQL: View Permissions @info:mysql:permissions
2 Hits, Last modified: 13 years ago
missions ====== ==== View Permissions ==== <code sql> SHOW PRIVILEGES; SHOW GRANTS FOR '{user}'@'%'; </code> {{tag>admin database mysql sql}}
MySQL: Remove Database @info:mysql:database
2 Hits, Last modified: 13 years ago
Database ====== ==== Remove Database ==== <code sql> DROP DATABASE IF EXISTS `{db}`; </code> {{tag>admin database mysql sql}}
MySQL: Grant Permissions @info:mysql:permissions
2 Hits, Last modified: 13 years ago
issions ====== ==== Grant Permissions ==== <code sql> GRANT ALL PRIVILEGES ON `{db}` . * TO '{user}'@'%'; </code> {{tag>admin database mysql sql}}
MySQL: Revoke Permissions @info:mysql:permissions
2 Hits, Last modified: 13 years ago
ssions ====== ==== Revoke Permissions ==== <code sql> REVOKE ALL PRIVILEGES ON `{db}` . * FROM '{user}'@'%'; </code> {{tag>admin database mysql sql}}
Oracle: Recovery Manager @info:oracle
2 Hits, Last modified: 13 years ago
ll archive logs but keep the last 45 days: <code sql> DELETE ARCHIVELOG ALL COMPLETED BEFORE 'SYSDATE ... rompting, e.g. via cron, after backup run: <code sql> DELETE NOPROMPT ARCHIVELOG ALL COMPLETED BEFORE
Oracle: SQLplus Scripting @info:oracle
1 Hits, Last modified: 13 years ago
Formatting Syntax @wiki
1 Hits, Last modified: 5 years ago

Page Tools

  • Show page
  • Old revisions
  • Backlinks
  • Back to top
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution 4.0 International
CC Attribution 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki