Saturday October 10th from 9:00pm to 10:00pm PST

247Apps Scheduled Maintenance

 

We will be making some improvements to our servers to provide greater reliability and performance for our customers.
From 9:00pm to 10:00pm PST, Saturday October 10th, we will be conducting some hardware upgrades to our servers. Services for WordPress Website Builder Elementor, Rental Plugins, Custom Calculation, DownloadInsights customers will be affected. While you may continue to work in open applications, you may experience an interruption to web services during the maintenance period.
We apologize for any inconvenience this disruption may cause and thank you for your patience.

Thank you,
247AppsMobi – Web Services of MyNetworkSolution Dev Team

How to find duplicate email address using mysql query

Some point in the future, you’ll have to get rid of some duplicated email records in your database table. How will you do that? Well, here is a handy query for finding duplicates of any field in a table. Suppose you want to find all email addresses in a table that exist more than once, use the query below:

select email_address,
count(email_address) as NumberOccurrences
from table_user_info
group by email_address
having ( count(email_address) > 1 );

This query will give you the results below:

email_address NumberOccurrences
0810west@msn.com 5
1texeira@sbcglobal.net 2
acel933@gmail.com 2
binh@bradfordsoftware.com 2
biana@adobe.com 3
david@microsoft.com 3

MySQL Installation

After installing MySQL, go to MySQL directory on your pc, open the file my.ini and change the data directory where you’ll store all your data in the future.  By default, it’ll define your pc’s Documents directory as shown below.

datadir=”C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/”

However you can point it to Data directory under MySQL dir.

Saturday March 21st from 9:00pm to 11:00pm PST

247Apps Scheduled Maintenance

 

We will be making some improvements to our servers to provide greater reliability and performance for our customers.
From 9:00pm to 11:00pm PST, Saturday March 21st, we will be conducting some hardware upgrades to our servers. Services for software Elementor, Rental Plugins, Custom Calculation customers will be affected. While you may continue to work in open applications, you may experience an interruption to web services during the maintenance period.
We apologize for any inconvenience this disruption may cause and thank you for your patience.

Thank you,
247AppsMobi – Web Services of MyNetworkSolution Dev Team

Applying mathematics directly to database table

When your company decides to reduce the prices of all products to 5% during this difficult economic time, what will you do to adjust the product prices in your database. Here is what I will show you.

If you perform the query directly to production database, first, I would recommend you duplicate the product table in case you enter an incorrect query. I always do this when I run query to change data in database.

Then write you query

UPDATE tbl_products SET price = price – (price * 0.05) ;

If your company just want to reduce the prices of products in a certain category, you can filter by category id.

UPDATE tbl_products SET price = price – (price * 0.05)  where cat_id = 5;