Tag: Big Data

  • Check what data Google collecting from you

    Check what data Google collecting from you

    You have probably heard about big data, for the service provider to get the data they need to be collected. One type of data is location data, location data can be collected if you have the location tracking on in your browser, mobile phone or other devices like a fitness band.

  • Useful mysql to remove / in a db column

    Useful mysql to remove / in a db column

    Here is a handy sql statement for removing a trailing ‘/’ in the column url

  • MySql Store Procedure (Routine) to break a date range into a record per day for reporting

    Problem! Project resource assignments are tracked in an Excel Spreadsheet, the following data as outlined in the table below is tracked.

  • Excel Workbook Size Blow-out and Phantom Links

    Unfortunately, it is not too uncommon to have an Excel Workbook increase in file size for no apparent reason. Below are some methods to overcome this problem, that should be performed in the order stated! Please note OzGrid accepts no responsibility for any loss of data. This means to save a copy of your Workbook…

  • How to get found on the Internet

    How to get found on the Internet

    The Internet has changed the way people learn and shop for products. With the Internet, the discipline of marketing has changed. Before the Internet, companies reached their consumers through trade shows, print advertising, and other traditional marketing methods.

  • How to repair a corrupt MySQL Database

    How to repair a corrupt MySQL Database

    For various reasons, database tables could get corrupted, and when it happens you should not panic. Reasons could be many, table corruption should be rare when using MySQL (though an overheating server continually restarting at the most inopportune times has meant I have seen more than my fair share of corruption recently, hence the inspiration…

  • Causes of MySQL Access Denied Errors

    If you encounter problems when you try to connect to the MySQL server, the following items describe some courses of action you can take to correct the problem. One of the most common issues that we found is with dedicated servers, many of the providers we used do not set up an account for root,…

  • Start and Stop MySQL on Linux

    A) If you are using MySQL on  RedHat Linux (Fedora Core/CentOS)  then use the following command: * To start MySQL server: /etc/init.d/mysqld start * To stop MySQL server: /etc/init.d/mysqld stop * To restart MySQL server /etc/init.d/mysqld restart Tip: Redhat Linux also supports service command, which can be used to start, restart, stop any service: #…