Skip to content
JONATHANS BLOG
View website Menu
  • Adventures
    • DIY
    • WhiskyWhisky!
    • Beerphotos of the beer I drink…
    • Cooking
    • Fitness
    • London
    • Edinburgh
    • Liverpool
    • Glasgow
    • digit expo 2023
    • digitexpo 2022
    • CYBERUK19
    • Amsterdam Blockchain 2018
    • Sorrento 2015
    • West Highland Way 2014
    • West Island Way 2014
    • Aberfoyle 2013
    • Scottish islands cycle 2012
    • Cyprus 2011
    • Europe cycle 2010
    • Cycle across europe 2009
  • Crypto Coins
    • Amsterdam Blockchain
    • Alt coins
    • Bitcoin
    • Exchanges
    • Mining
  • Development
    • Editors
    • Methodology
    • Multiloquent
    • Multiloquent wordpress theme
    • Php
    • SEO
    • SQL
    • Vagrant
    • vuejs
    • WordPress
  • Hardware
    • raspberry pi
  • Pentest
    • Metasploit
    • Hacking Tools
    • CYBERUK19
    • OSCP
  • Android
  • Kali Linux
  • Linux
    • Apache
    • Kali Linux
    • Commandline
    • Networking
    • Metasploit
  • Apple
    • Iphone and ipad
    • Apple tv
    • Addressbook / contacts
    • Dock
    • Finder
    • Gaming
    • Google chrome
    • Icalthis is the category for ical. in it you will find lots of tips and tricks and some hacks for ical on your mac.
    • Ichat / messages
    • Iphoto
    • Itunes
    • Mission control
    • Notification center
    • Osx
    • Reminders.app
    • Safari
    • Mail.app
    • Security
    • Spotlight
    • Tasks
    • Terminal
    • Time machine
  • Other
    • News
    • Ableton
    • Music
    • Albums
    • Legal stuff
    • Protoolsprotools
    • Internet
    • Social networking
    • Formula 1
  • About Me
    • Portfolio
  • Type your search
Search this website
  • Adventures
    • DIY
    • Whisky
    • Beer
    • Cooking
    • Fitness
    • London
    • Edinburgh
    • Liverpool
    • Glasgow
    • digit expo 2023
    • digitexpo 2022
    • CYBERUK19
    • Amsterdam Blockchain 2018
    • Sorrento 2015
    • West Highland Way 2014
    • West Island Way 2014
    • Aberfoyle 2013
    • Scottish islands cycle 2012
    • Cyprus 2011
    • Europe cycle 2010
    • Cycle across europe 2009
  • Crypto Coins
    • Amsterdam Blockchain
    • Alt coins
    • Bitcoin
    • Exchanges
    • Mining
  • Development
    • Editors
    • Methodology
    • Multiloquent
    • Multiloquent wordpress theme
    • Php
    • SEO
    • SQL
    • Vagrant
    • vuejs
    • WordPress
  • Hardware
    • raspberry pi
  • Pentest
    • Metasploit
    • Hacking Tools
    • CYBERUK19
    • OSCP
  • Android
  • Kali Linux
  • Linux
    • Apache
    • Kali Linux
    • Commandline
    • Networking
    • Metasploit
  • Apple
    • Iphone and ipad
    • Apple tv
    • Addressbook / contacts
    • Dock
    • Finder
    • Gaming
    • Google chrome
    • Ical
    • Ichat / messages
    • Iphoto
    • Itunes
    • Mission control
    • Notification center
    • Osx
    • Reminders.app
    • Safari
    • Mail.app
    • Security
    • Spotlight
    • Tasks
    • Terminal
    • Time machine
  • Other
    • News
    • Ableton
    • Music
    • Albums
    • Legal stuff
    • Protools
    • Internet
    • Social networking
    • Formula 1
  • About Me
    • Portfolio
  • Type your search

SQL

  1. Home>
  2. Development>
  3. SQL>
  4. Page 2
Read more about the article MSc Thesis

MSc Thesis

  • Post author:jonathansblog
  • Post published:May 13, 2016
  • Post category:Methodology/News/Pentest/SQL
  • Post comments:0 Comments

Ive completed my MSc Thesis! I was awarded a grade A (81%) and an MSc with distinction :D The abstract from my thesis is below: SQL injection vulnerabilities remain one…

Continue ReadingMSc Thesis
Read more about the article Installing mongodb on centos7

Installing mongodb on centos7

  • Post author:jonathansblog
  • Post published:May 17, 2015
  • Post category:Development/Linux/SQL
  • Post comments:0 Comments

Installing mongodb on centos7: To install the mongodb server in centos7 first you have to add the mongodb repo: vim /etc/yum.repos.d/mongodb.repo Paste this into the file: [mongodb] name=MongoDB Repository baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/…

Continue ReadingInstalling mongodb on centos7
Read more about the article What is an sql injection attack

What is an sql injection attack

  • Post author:jonathansblog
  • Post published:May 5, 2015
  • Post category:Development/Kali Linux/Methodology/Pentest/SQL
  • Post comments:0 Comments

What is an sql injection attack? All websites process data entered by users. An input-validation attack is when unexpected user input is processed by a web server or database and…

Continue ReadingWhat is an sql injection attack
Read more about the article Oracle process overview

Oracle process overview

  • Post author:jonathansblog
  • Post published:May 11, 2014
  • Post category:Development/Methodology/SQL
  • Post comments:0 Comments

Oracle process overview. There are 3 types of oracle processes: USER processes SERVER processes BACKGROUND processes User connected to a user application (eg sql*plus) controls the application associated with an…

Continue ReadingOracle process overview
Read more about the article Oracle forms overview

Oracle forms overview

  • Post author:jonathansblog
  • Post published:May 11, 2014
  • Post category:Development/Methodology/SQL
  • Post comments:0 Comments

Oracle forms overview. Oracle internet platform consists of 3 components: oracle application server (forms service + OC4J) oracle developer suite (forms developer + object navigator + form module) oracle database…

Continue ReadingOracle forms overview
Read more about the article Oracle procedure with cursor

Oracle procedure with cursor

  • Post author:jonathansblog
  • Post published:May 11, 2014
  • Post category:Development/Methodology/SQL
  • Post comments:0 Comments

This is a basic oracle procedure with cursor: DECLARE CURSOR my_cursor IS SELECT * FROM table_a LEFT JOIN table_b ON a.x = b.x BEGIN FOR things IN my_cursor LOOP --…

Continue ReadingOracle procedure with cursor
Read more about the article Oracle instead of triggers

Oracle instead of triggers

  • Post author:jonathansblog
  • Post published:May 11, 2014
  • Post category:Development/Methodology/SQL
  • Post comments:0 Comments

Oracle instead of triggers, and why you need them: You cant update a view if it contains:group byorder byanalytical /aggregate functionssubqueriesjoins You then need an 'instead of' trigger CREATE TRIGGER…

Continue ReadingOracle instead of triggers
Read more about the article Oracle logical structures

Oracle logical structures

  • Post author:jonathansblog
  • Post published:May 8, 2014
  • Post category:Development/Methodology/SQL
  • Post comments:0 Comments

Oracle logical structures Oracle logical structures can be summarised by the following: Schema. Tablespace. Datablock. Redo log. Schema collection of objects (table, view, etc) owned by db user name is…

Continue ReadingOracle logical structures
Read more about the article Oracle control file

Oracle control file

  • Post author:jonathansblog
  • Post published:May 8, 2014
  • Post category:Development/Methodology/SQL
  • Post comments:0 Comments

Oracle control file: binary file start of instance, file is checked database has 1 control file each modifiable only by oracle editing prohibited, even by DBA Keeps track of: datafile…

Continue ReadingOracle control file
  • Go to the previous page
  • 1
  • 2
  • 3
  • Go to the next page

Latest Posts

  • A Guide to Open-WebUI: Using It with Ollama
  • How to install ollama and run deepseek
  • Operation Triangulation: Unraveling a Sophisticated Cyber Espionage Campaign
  • Digit Expo 2024
  • Modifying my guitar hardware
  • Mkcert on Laravel Homestead for trusted SSL certs
  • Bash & Zsh Command History Hacks: Say Goodbye to history | grep
  • WordPress Yoast add focus keywords to all posts without focus keywords
  • Configure azure notification hub for ios android and web
  • Azure static website hosting with blob storage and CDN
  • Azure Notification Hubs for push notifications in laravel and nextjs
  • How to block calls on your iphone
  • WildCard SSL certificates with Letsencrypt in Azure App-Service
  • Azure Wildcard Subdomains
  • New Guitar Day

Popular Posts

  • How to install ollama and run deepseek
  • DIY Skateboard Light
  • MetaSploit tutorial for beginners
  • OS Detection Techniques
  • Website crawler software kali linux
  • WordPress Security
  • Metasploit for website pentest
  • Remote Debugging PHP in Visual Studio Code with XDebug
  • How to use metasploit to scan for vulnerabilities
  • Coding in php on android
  • Burpsuite beginners tutorial – how to use burp suite
  • Ubuntu on the chuwi hi10 pro
  • Linux commands for networking with command line
  • Wapiti tutorial
  • Nikto tutorial for kali linux
  • Privacy Policy
  • Jonathan Mitchell CITP BSc MSc MBCS
Copyright - WordPress Theme by OceanWP