Tuesday 16 June 2015

Full form of OTA

In area of Technology we use OTA for Over The Air programming or free-to-air. Sending software updates to mobiles, tablets, and laptops with the necessary settings with which to access services such as WAP or MMS. Some devices with this capability are labeled as being OTA capable.

In area of electronics full form of OTA is written as Operational Trans-conductance Amplifier.

In India, OTA is also expanded for the Officers Training Academy. OTA trains officers for the Short Service Commission. It is a Government of India establishment under Indian Army.

Contains: OTA meaning, OTA refers to, expand OTA, fullform of OTA

Moto X 1st Generation Users will get Android 5.1 Lollipop OS update soon

Moto X 1st Generation gksea images
According to sources, Moto X (1st Generation) owners will be receiving Android 5.1 Lollipop operating system update through OTA in the next couple of days. While Moto X 2nd Generation will get it later because of some technical issues.

Tuesday 2 June 2015

Sneak peek into Windows 10

Windows 10 Image Rights: Microsoft

Rolling on years now Windows 10 is coming live on July 29, 2015. All Windows OS 7 or above versions will get free Windows 10 updates.
Lets look at the features that will be available in Windows 10:

1.The Start Menu is back
Windows 10 is having the things which are combination of windows 7 and windows 8 says a Microsoft Employee. So the start menu which you missed in Windows 8 is now back. You can see this in the image above.

2. Microsoft Edge
There will not be any Internet Explorer named entity but a new web browser from Microsoft that is Microsoft Edge. Edge was coded by the name Spartan. So previously people were thinking as of Microsoft will name it as Spartan but they did not do that and they announced Edge as the new browser.

3. Multi Doing
You can open up to four apps in a single view so that you are having your eyes on four together making things fast. Also there is a provision of creating virtual Desktop.

4. Windows Store
One place for buying  digital content including apps,games, music etc.

5.Cortana the digital personal assistant

6. Xbox the gaming application.

There will be many new features in the upcoming version of Windows. So lets wait for the upgrade.

Thanks for reading!

--Editor
gksea.com Technology


Thursday 28 May 2015

copy tables with data from Current Database to another database in SQL Server Sytax

SCENARIO 
Suppose you have a table with some data in a Database A and you want to copy this data to a table in Database B .

then you should use the following syntax:

USE DatabaseB;

SELECT *
INTO NewTable
FROM DatabaseA.Schemaname.OldTable
Here NewTable and OldTable are two similar tables in different databases.
While handling different databases we must use fully qualified names
 to reach correct tables.





SQL Query COUNT() function syntax

SCENARIO 
Suppose you have a table, now you want to know the number of records in it. Then COUNT function will do the job.

SYNTAX of COUNT()

SELECT COUNT(ColumnName) from Table_NAME;

Suppose we have a table named Table_NAME
as
sql result image

Now if we run query     SELECT COUNT(ColumnName1) from Table_NAME;

Output = 4
 or if we run  SELECT COUNT(ColumnName3) from Table_NAME;

Output= 2
it means if we are running count on columns then it neglects the null value columns.

If you want to know the total number of records in a table then you can simply use
SELECT COUNT(*) from Table_NAME;

SQL Query Average function syntax

Scenario: Suppose you have a everyday sales table with you and you want to know the average sale happened on a day. Then using this function you can easily get this.

Syntax SELECT AVG(ColumnName) FROM table_name;

So lets suppose i have a 30 day sales data in the table named SALE. And there is a column SalesAmount which depicts the daily sale amount. and If we want to know the average sales happened in that month. We can easily get this using:

SELECT AVG(SalesAmount) FROM SALE;

SQL query Syntax Select all record from table

If you want to select everything from a table then use the follwing syntax:

SELECT * FROM table_name;

Here table_name is the name of the table of which you want to select the records.

This is basically see all record / data query.