motoring-stories.blogspot.com
Motoring Stories: Fuel Filler Cap Seal
http://motoring-stories.blogspot.com/2013/05/fuel-filler-cap-seal.html
Monday, 20 May 2013. Fuel Filler Cap Seal. I took my Land Rover Defender 110 for its annual inspection today. In the UK this is called an MOT test. While the test was being carried out, I stayed in the garage's reception area. After a while the inspector came to ask for the key to the fuel filler cap. I asked him if he now had to check that I had not been using red diesel but apparently it was nothing to do with that. Fuel filler cap seal. Location: West Sussex, UK. Subscribe to: Post Comments (Atom).
mi-blog-sobre-oracle.blogspot.com
Mi Blog sobre Oracle: enero 2015
http://mi-blog-sobre-oracle.blogspot.com/2015_01_01_archive.html
Mi Blog sobre Oracle. Lunes, 12 de enero de 2015. Natural Join y ORA-25155. Si quieres unir dos tablas o dos vistas y emplear las columnas que existen en ambos objetos para emparejarlos, se puede hacerlo con un natural join. Aquí está un ejemplo que probé en Oracle 11.2:. SQL select value/100 "CPU Used". 2 from v$sesstat natural join v$statname. 3 where sid = 101. 4 and name = 'CPU used by this session'. SQL select value/100 "CPU Used". 2 from v$sesstat natural join v$statname. 3 where sid = 101. After l...
mon-blog-oracle.blogspot.com
Mon Blog au Sujet d'Oracle: avril 2014
http://mon-blog-oracle.blogspot.com/2014_04_01_archive.html
Mon Blog au Sujet d'Oracle. Jeudi 17 avril 2014. Un Exemple Simple avec REPLACE. Si vous voulez mettre à jour une colonne et remplacer un caractère (ou une série de caractères) par. Un autre caractère (ou une autre série de caractères), vous pouvez le faire avec la fonction REPLACE. Quand on l'utilise, il faut fournir le nom de la colonne, la vielle et la nouvelle. Voici un exemple que j’ai créé pour une collègue qui m’aide avec mon français. Je l’ai testé sur Oracle 12.1:. SQL create table directory name.
the-daily-programmer.blogspot.com
The Daily Programmer: May 2012
http://the-daily-programmer.blogspot.com/2012_05_01_archive.html
No posts. Show all posts. No posts. Show all posts. Subscribe to: Posts (Atom). I did a Certificate in Elementary Computing in Aberdeen and a TOPS course in COBOL programming in Nottingham at the end of 1982. I started work in IT as a COBOL programmer for an insurance company in 1983. In 1987, I moved to a utility company, still doing COBOL programming. I went to a defence company in 1996 and became an Oracle DBA. In 2001 I took up my current position as an Oracle DBA for another utility company.
mon-blog-oracle.blogspot.com
Mon Blog au Sujet d'Oracle: juin 2014
http://mon-blog-oracle.blogspot.com/2014_06_01_archive.html
Mon Blog au Sujet d'Oracle. Vendredi 6 juin 2014. Les Dangers de CREATE ANY PROCEDURE et EXECUTE ANY PROCEDURE. J’ai testé cet exemple sur Oracle 12.1. Il ne faut pas donner CREATE ANY PROCEDURE. Et EXECUTE ANY PROCEDURE. Au même utilisateur. Pourquoi pas? Alors, j’ai donné ces deux privilèges ou droits à Andrew:. SQL conn / as sysdba. SQL grant create any procedure,. 2 execute any procedure,. 4 to andrew identified by reid. Autorisation de privilèges (GRANT) acceptée. Le droit CREATE ANY PROCEDURE.
the-daily-programmer.blogspot.com
The Daily Programmer: March 2013
http://the-daily-programmer.blogspot.com/2013_03_01_archive.html
No posts. Show all posts. No posts. Show all posts. Subscribe to: Posts (Atom). I did a Certificate in Elementary Computing in Aberdeen and a TOPS course in COBOL programming in Nottingham at the end of 1982. I started work in IT as a COBOL programmer for an insurance company in 1983. In 1987, I moved to a utility company, still doing COBOL programming. I went to a defence company in 1996 and became an Oracle DBA. In 2001 I took up my current position as an Oracle DBA for another utility company.
mon-blog-oracle.blogspot.com
Mon Blog au Sujet d'Oracle: novembre 2014
http://mon-blog-oracle.blogspot.com/2014_11_01_archive.html
Mon Blog au Sujet d'Oracle. Mercredi 19 novembre 2014. Voici une question pour vous aider à étudier pour l'examen OCA. Quelle commande peut-on utiliser pour savoir si une base de données soit en mode ARCHIVELOG. B show archive mode. C archive log list. J'ai testé les choix sur Oracle 12 de la manière suivante:. SQL conn / as sysdba. SP2-0734: commande inconnue au début de "archivelog." - le reste de la ligne est ignoré. SQL show archive mode. SP2-0158: option SHOW inconnue "archive". SQL archive log list.
mon-blog-oracle.blogspot.com
Mon Blog au Sujet d'Oracle: novembre 2013
http://mon-blog-oracle.blogspot.com/2013_11_01_archive.html
Mon Blog au Sujet d'Oracle. Lundi 25 novembre 2013. ALTER TABLESPACE . RENAME TO. On peut changer le nom d’un tablespace depuis Oracle 10. Dans l’exemple suivant, que j’ai testé sur Oracle 11, je commence avec un tablespace qui s’appelle USERS. Et je le renomme à NEW USERS. SQL select tablespace name from dba tablespaces. 2 where tablespace name like '%USERS%'. SQL alter tablespace users. 2 rename to new users. SQL select tablespace name from dba tablespaces. 2 where tablespace name like '%USERS%'. How t...