Showing posts with label Database. Show all posts
Showing posts with label Database. Show all posts

Monday, 19 August 2019

MySQL Performance: MySQL vs. MariaDB

Pros of Maria

  • More Storage Engines Options
  • Speed improvements
  • Faster Indexes/Cache
  • Speedier and Larger Connection Pool
  • Improved Replication
  • New Extensions/Features
Cons of Maria
  • Missing Features
  • Delayed MySQL Compatibility


https://www.liquidweb.com/kb/mysql-performance-mysql-vs-mariadb/

Saturday, 13 April 2019

Pentagon snubs Oracle

https://www.fudzilla.com/news/memory-and-storage/48501-pentagon-snubs-oracle

Sunday, 17 February 2019

SQL Server 2019 as Docker Image

https://www.microsoft.com/en-us/sql-server/sql-server-2019

Thursday, 30 August 2018

Performance Tuning Oracle

https://blog.tanelpoder.com/posts/oracle-sql-monitoring-advanced-ash-usage-hacking-session/

Friday, 3 August 2018

Push for Oracle Database Level Changes Notification

https://docs.oracle.com/cd/B19306_01/B14251_01/adfns_dcn.htm

Async Database Tasks .NET

https://www.codeproject.com/Articles/1121822/Using-Async-Await-Task-Methods-With-SQL-Queries-NE

No Async Oracle Driver for .NET

https://softwarerecs.stackexchange.com/questions/18007/async-oracle-driver-for-net

Thursday, 26 July 2018

Entity Framework Core Succinctly

Entity Framework Core is a complete rewrite from the “classic” Entity Framework, building on the new multiplatform .NET Core framework and adding the ability to connect to nonrelational data sources while keeping the features that made Entity Framework Code First so popular.

Wednesday, 24 January 2018

Microsoft Database Exam 98-364

https://www.microsoft.com/en-us/learning/exam-98-364.aspx

      Core

Books about Microsoft SQL Server

  •  Introducing Microsoft SQL Server 2014 (2014), by Ross Mistry, Stacia Misner
  •  Microsoft SQL Server 2012 Internals (2013), by Kalen Delaney
  •  Microsoft SQL Server 2012 T-SQL Fundamentals (2012 ), by Itzik Ben-Gan
  •  SQL Server 2012 Query Performance Tuning, 3rd Edition (2012), by Grant Fritchey
  •  Professional SQL Server 2012 Internals and Troubleshooting (2012), by Christian Bolton, Justin Langford, Glenn Berry, Gavin Payne, Amit Banerjee, Rob Farley
  •  SQL Server 2012 T-SQL Recipes, 3rd Edition (2012), by Jason Brimhall, David Dye, Jonathan Gennick, Andy Roberts, and Wayne Sheffield
  •  Expert Performance Indexing for SQL Server 2012 (2012), by Jason Strate, Ted Krueger
  •  SQL Server 2008 Administration in Action (2009), by Rod Colledge
  •  Applied Microsoft SQL Server 2008 Reporting Services (2008), by Teo Lachev
  •  Securing SQL Server 2nd Edition (2012), by Denny Cherry

SQL Server Express Compatible with Windows 7

https://msdn.microsoft.com/library/ms143506(v=sql.120).aspx

SQL Server 2014 Express is the latest to support Windows 7 Home

SQL Server 2016 and SQL Server 2017 minimum OS is Windows 8 and they are only 64 bit

Thursday, 25 August 2016

MySQL migration from 5.0 to 5.6

http://mysqlserverteam.com/upgrading-directly-from-mysql-5-0-to-5-6-with-mysqldump/


mysql> \s
--------------
mysql  Ver 14.12 Distrib 5.0.15, for Win32 (ia32)
Connection id:          3
Current database:
Current user:           ODBC@localhost
SSL:                    Not in use
Using delimiter:        ;
Server version:         5.0.15-nt
Protocol version:       10
Connection:             localhost via TCP/IP
Server characterset:    utf8
Db     characterset:    utf8
Client characterset:    utf8
Conn.  characterset:    utf8
TCP port:               3306
Uptime:                 4 days 6 hours 22 min 35 sec

Threads: 1  Questions: 11  Slow queries: 0  Opens: 0  Flush tables: 1  Open tables: 0  Queries per second avg: 0.000
--------------

C:\Program Files (x86)\MySQL\MySQL Server 5.0\bin>mysqldump.exe -uroot --add-drop-table --all-databases --force > c:\temp\all-mysql-dbs.dmp --password Enter password: ****

uninstall mysql 5.0


mysql --uroot --password --execute="source c:\temp\all-mysql-dbs.dmp"
Enter password: ****