Archive for Januar 1st, 2019

Oracle Private Cloud Appliance (PCA) – learn how to manage disaster recovery plans efficiently and flexibly

Dienstag, Januar 1st, 2019

Alstom Coradia iLint – ermöglicht erstmals einen emissionsfreien Schienenverkehr auf Strecken ohne Oberleitung

Dienstag, Januar 1st, 2019

Barcelona Supercomputing Center-Centro Nacional de Supercomputación (BSC-CNS) – located in the Torre Girona chapel

Dienstag, Januar 1st, 2019

Bayerischer Ministerpräsident Dr. Markus Söder (CSU) – Neujahrsansprache 2019 „Die Zukunft Europas steht auf dem Spiel“

Dienstag, Januar 1st, 2019

Blog ‘DPSolution.de’ – jetzt 11 Jahre alt und mit 12.051 Beiträgen gefüllt

Dienstag, Januar 1st, 2019

Krankenhausgesellschaft Nordrhein-Westfalen (KGNW) Präsident Jochen Brink – „Wir kämpfen nicht um jede Klinik“

Dienstag, Januar 1st, 2019

Lufthansa Group – stellt 2019 rund 5.500 Menschen ein mit einem Schwerpunkt bei den „Fliegenden“ sowie bei Technik und IT

Dienstag, Januar 1st, 2019

m.Doc – der Arzt ist immer mit dabei

Dienstag, Januar 1st, 2019

SQL Tutorial – the SQL cheat sheet provides you with the most commonly used SQL statements for your reference

Dienstag, Januar 1st, 2019

SQL Tutorial – helps you get started with SQL quickly and effectively through many practical examples

Dienstag, Januar 1st, 2019

If you are a software developer, database administrator, data analyst, or data scientist who wants to use SQL to analyze data this SQL Tutorial is a great start

SQL Tutorial – MINUS query giving results on exactly same data in two tables

Dienstag, Januar 1st, 2019

Oracle Database – total size of the database

Dienstag, Januar 1st, 2019

Oracle Database – consists of data files, redo log files, control files, temporary files and the size of the database actually means the total size of all these files

select
( select sum(bytes)/1024/1024/1024 data_size from dba_data_files ) +
( select nvl(sum(bytes),0)/1024/1024/1024 temp_size from dba_temp_files ) +
( select sum(bytes)/1024/1024/1024 redo_size from sys.v_$log ) +
( select sum(BLOCK_SIZE*FILE_SIZE_BLKS)/1024/1024/1024 controlfile_size from v$controlfile) „Size in GB“
from
dual