Search
 
SCRIPT & CODE EXAMPLE
 

SQL

crear usuario oracle

DROP USER miusuario CASCADE;

CREATE USER miusuario IDENTIFIED BY miclavesecreta
       DEFAULT TABLESPACE data  
       TEMPORARY TABLESPACE temp
       QUOTA UNLIMITED ON data;

CREATE ROLE programador;

GRANT CREATE session, CREATE table, CREATE view, 
      CREATE procedure,CREATE synonym,
      ALTER table, ALTER view, ALTER procedure,ALTER synonym,
      DROP table, DROP view, DROP procedure,DROP synonym,
      TO conn;

GRANT programador TO miusuario;
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql faster delete 
Sql :: postgresql 
Sql :: sql tablo sp 
Sql :: how to type a blank discord messgae 
Sql :: apex call duration 
Sql :: concat string is null postgresql 
Sql :: update having mysql 
Sql :: ring SQLite sqlite_init 
Sql :: hibernate xml property MySQL url, username and password 
Sql :: dbms transaction tutorialspoint 
Sql :: sql requete number pair 
Sql :: how to check if sql query is correct online 
Sql :: sql get latest of 2 datetimes 
Sql :: PostgreSQL random boolean for generate test values 
Sql :: oracle factorial 
Sql :: where to find job 0x.. in ddlevents 
Sql :: calculations on columns sql 
Sql :: sql interview questions 
Sql :: mysql faster insert 
Sql :: distance calculator from lat long sql query 
Sql :: max in postgresql 
Sql :: bigquery javascript 
Sql :: sql id serial primary key 
Sql :: Error in connection_import_file(conn@ptr, name, value, sep, eol, skip) : RS_sqlite_import: test.csv line 2 expected 11 columns of data but found 1 
Csharp :: c# delete file if exists 
Csharp :: visual studio c# print to console 
Csharp :: unity button onclick remove listener 
Csharp :: vue.createapp is not a function 
Csharp :: movement script c# 
Csharp :: c# datetime dd/mm/yyy hh:mm:ss 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =