Search
 
SCRIPT & CODE EXAMPLE
 

SQL

run docker container with database as rds metabase

docker run -d -p 3000:3000 
  -e "MB_DB_TYPE=postgres" 
  -e "MB_DB_DBNAME=metabase" 
  -e "MB_DB_PORT=5432" 
  -e "MB_DB_USER=<username>" 
  -e "MB_DB_PASS=<password>" 
  -e "MB_DB_HOST=my-database-host" 
  --name metabase metabase/metabase
Comment

PREVIOUS NEXT
Code Example
Sql :: Write an SQL query to fetch worker names with salaries = 50000 and <= 100000. 
Sql :: select odd records sql 
Sql :: postgresql database url 
Sql :: Add new column T-SQL 
Sql :: get all employee of salary if more than in sql 
Sql :: postgresql newline character 
Sql :: oracle show error line number 
Sql :: mysql datetime format 
Sql :: Grant privileges of databse to user 
Sql :: mysql composite primary key 
Sql :: truckat table mysql 
Sql :: oracle privileges users 
Sql :: postgres having 
Sql :: import csv to postgresql 
Sql :: how-to-remove-mysql-root-password 
Sql :: sql pivot without aggregate 
Sql :: setval in postgres 
Sql :: Add a new column into table 
Sql :: oracle db timestamp auto add 
Sql :: mysql on kubernetes 
Sql :: insert to postgres table 
Sql :: Import zipped mysql dumps 
Sql :: how to generate ids in sql 
Sql :: mysql sort asc numeric 
Sql :: run stored procedure sql 
Sql :: back up stored procedures mysql 
Sql :: oracle compile trigger 
Sql :: querry mysql by 2 columns 
Sql :: sqlite löschen einer tabelle 
Sql :: mysql update from n to 100 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =