BIP KB Tag: Windows
MySQL: How To Show All Tables Running INNODB Engine
mysql server
This short tutorial will show you how to show all database tables running INNODB engine on a mysql server.
Login into MySQL
mysql> use mysql;
mysql> SELECT table_schema, table_name, engine FROM INFORMATION_SCHEMA.TABLES WHERE engine = 'innodb';
Results:
+--------------+-----------------------+--------+
| table_schema | table_name | engine |
+--------------+-----------------------+---...
By daniel, March 18, 2015
How To Set Up A RESTful Web Service Using WCF - GET
What Is WCF?
Windows Communication Foundation is a programming platform and runtime system for building, configuring and deploying distributed services. It's a framework for building Service Oriented Applications. WCF is comprised of class libraries, tools, hosting facilities, and other components that are used to provide a foundation for applications that use SOA. WCF supports the features of Web Services, Remoting, MSMQ and COM+ ...
By rajiv02, May 10, 2016
How To Install WAMP Server On Windows
In this Tutorial you will learn now to install WAMP Server on a Windows Box.
The acronym for WAMP stands for Windows, Apache, MySQL, PHP. Apache is the most important one in WAMP which is used to run the web server in Windows OS. MySQL is the database and PHP is the scripting language which is also included in this package.
1. Download and Install WAMP Server from Sourceforge
2. Click on t...
By shameer01, March 12, 2016