by XTIVIA | Feb 11, 2015 | Blog, Data Management, Databases
MySQL creates a default configuration file named my.cnf (or my.ini in Windows), that can be edited to include and fine tune the startup options to meet the needs of your environment. This is often more convenient than entering these values every time you start the...
by XTIVIA | Feb 11, 2015 | Blog, Data Management, Databases
The sys.database_role_members view contains two columns one for the role id and one for the member id creating a relationship between the role and the user. When we join this data to the sys.database_principals view we can retrieve the friendly name of the role and...
by XTIVIA | Feb 10, 2015 | Blog, Data Management, Databases
ORA-01555 Snapshot Too Old The snapshot too old error is a very common error we get asked about on a regular basis. It’s also a pretty simple error to avoid if you know what to look for and how to configure your queries and the Oracle database. The error is basically...
by XTIVIA | Feb 5, 2015 | Blog, Data Management, Databases
DB2’s automated maintenance does not currently allow us to automate inplace reorgs. Inplace reorgs are more online than other reorgs, and in my experience are heavily used. This means that many DBAs wrap some sort of scripting around reorgs. Working in a variety...
by XTIVIA | Feb 4, 2015 | Blog, Data Management, Databases
This error comes up pretty often and can be caused by a lot of different things. Usually, this is a pretty easy one to solve. It’s mostly just a syntax error and you forgot part of your SQL statement. You need a select, a column, from clause, and optionally a...
by XTIVIA | Feb 3, 2015 | Blog, Data Management, Databases
Tip # 4 – Not having a Baseline Top 10 Tips for SQL Server Performance and Resiliency This article is part 4 in a series on the top 10 most common mistakes that I have seen impacting SQL Server Performance and Resiliency. This post is related to the most common errors...
by XTIVIA | Feb 2, 2015 | Blog, Data Management, Databases
This error occurs due to the fact that your connection to the Oracle server is no longer available or that the server couldn’t respond to the client’s requests. This is usually called by an Oracle server issue or a networking issue. You can start...
by XTIVIA | Feb 1, 2015 | Blog, Data Management, Databases
ORA-01722 Invalid Number This error occurs when you try to convert a character string into a number, and the string can’t be converted into a valid number. So what is a valid number you ask? A valid number to Oracle would be a digit between 0-9, a negative or...
by XTIVIA | Jan 26, 2015 | Blog, Data Management, Databases
The ORA-600 is an internal Oracle error that can be reported by a very serious error. A lot of times this error can’t be solved by an onsite DBA and needs direct help from Oracle to help troubleshoot the issue. If the trace files from the error don’t prove...
by XTIVIA | Jan 26, 2015 | Blog, Data Management, Databases
Tip # 3 – Maintain your SQL Server Top 10 Tips for SQL Server Performance and Resiliency This article is part 3 of 10 in a series on the most common mistakes that I have seen impacting SQL Server Performance and Resiliency. This post is related to the most common...