Search
 
SCRIPT & CODE EXAMPLE
 

SQL

Using the Cloud SQL Auth proxy to connect to multiple instances

    # Start the Cloud SQL Auth proxy to connect to two different Cloud SQL instances    # Give the Cloud SQL Auth proxy a unique port on your machine to use for each Cloud SQL instance.    ./cloud_sql_proxy -instances=myProject:us-central1:myInstance=tcp:5432,myProject:us-central1:myInstance2=tcp:1234    # Connect to "myInstance" using port 5432 on your machine:    psql -U myUser -h 127.0.0.1  --port 5432    # Connect to "myInstance2" using port 1234 on your machine:    psql -U myUser -h 127.0.0.1  --port 1234  
Comment

PREVIOUS NEXT
Code Example
Sql :: how to drop mili second in sql 
Sql :: datagrip go to line 
Sql :: select distinct records in sql with maximum time desc 
Sql :: what is the difference between an embedded database and a normal 
Sql :: sql find record cannot cast date 
Sql :: oracle query archivemode 
Sql :: sql update table one column 
Sql :: sql bild in function 
Sql :: utiliser sql ligne de commande 
Sql :: sql server and spring boot api 
Sql :: mysql_error replacement 
Sql :: connecting mySQL to STS 
Sql :: sql compound operators 
Sql :: migration graphql 
Sql :: oracle grant alter table constraint 
Sql :: union in sql 
Sql :: psql database does not exist 
Sql :: sql count if 
Sql :: capabilities of sql select statements 
Sql :: create view in mysql workbench 
Sql :: select all users sql 
Sql :: mysql listing get a particu particular user firsdt 
Csharp :: unity find objects with tag 
Csharp :: c# word randomizer 
Csharp :: c# async sleep 
Csharp :: c# open folder in explorer 
Csharp :: how to unlock cursor in unity 
Csharp :: c# get current date without time 
Csharp :: how to get the startup path in console app 
Csharp :: unity change text color 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =