Please turn JavaScript on
Alter-database icon

Alter-database

Get updates from Alter-database via email, on your phone or read them on follow.it on your own custom news page.

You can filter the news from Alter-database that get delivered to you using tags or topics or you can opt for all of them. Unsubscription is also very simple.

See the latest news from Alter-database below.

Site title: Database Technology

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  0.14 / day

Message History

 


SELECT

  USAGE_DATE,

DATABASE_NAME,

ROUND(AVERAGE_DATABASE_BYTES / POWER(1024, 3), 2) AS DATABASE_GB,

ROUND(AVERAGE_FAILSAFE_BYTES / POWER(1024, 3), 2) AS FAILSAFE_GB,

ROUND(AVERAGE_HYBRID_TABLE_STORAGE_BYTES / POWER(1024, 3), 2) AS HYBRID_TABLE_GB,

ROUND(AVERAGE_ARCHIVE_STORAGE_COOL_BYTES / POWER(...


Read full story

 we can create the same name table in Snowflake database.

we create permanent table, temporary table in same  database, But when we query the table temporary table takes priority.


create permanent table in public schema in SALES_DB

CREATE TABLE CUSTOMERS

(

ID INT,

NAME STRING,

CITY STRING

);


Read full story

 -- List all users present in mysql


mysql> select user,host,account_locked,password_expired from mysql.user;



Create user in mysql:


mysql> CREATE USER 'test_user'@'%' IDENTIFIED BY 'test_user';

Query OK, 0 rows affected (0.02 sec)


mysql> GRANT ALL ON *.* TO 'user'@'localhost...


Read full story

 Reading MSSQL DB data from Oracle 19c  database using DB link & ODBC Drivers :

****************************************************************************

List of steps:

**************

1. Root - Install Microsoft SQL server ODBC drivers.

  sudo ACCEPT_EULA=Y yum install -y msodbcsql17

2. Root - Create ODBC entry in /etc/odbc.ini file...


Read full story