How to Improve Traffic To a blog,Make Your Blog Popular,Blogging platforms
Tips to Improve blog's Traffic It is not so easy to get traffic to each and every blog but I have experienced if you update your blog everyday then it will come on the first page of search engine (by...
View ArticleQuery to show all tables names, see all the objects,create the table into the...
Query to show all table namesselect table_name from dba_tablesSELECT *FROM TAB;Query to see all the objects in sqlThis is a very simple query to get all the objects in sql. User_Objects is sql system...
View ArticlePHP Tips-Getting the nodes list of xml doument with responseXml in ajax ,call...
Getting the nodes list of xml doument with responseXml in ajaxvar obj = "";function callAjaxObj(){try{obj = new XMLHttpRequest();}catch(e){try{obj = new...
View ArticleSet batch file which schedules dump from database in MYSQL
Set batch file which schedules dump from database in MYSQLTo Set batch file which schedules dump from database in MYSQL you can try following way.echo Running dump... c:\MYSQL\bin\mysqldump -u root...
View ArticleHow To Upgrade Your Computer's Memory,Renaming of Drives
Upgrade Your Computer's MemoryUpgrading computer memory involves increasing the RAM of your computer, so the first thing you have to figure out is the type of RAM the system uses, how it's configured,...
View ArticleRedirect output in a file,Check Exist validation,Cursor Example in PL SQL
Redirect output in a file in Oracle PL SQLThere are different ways:a) Before you execute the package you can enable SPOOL.orb) Create a temporary package and insert the log messages into that so that...
View ArticleTips for Linux Kernel scheduling,shutdown and restart command,steps to kernel...
kernel scheduling in LinuxIn kernel you have kernel threads. Some part of the kernel code runs in the userspace process context and some other part runs in the kernel thread context. All the userspace...
View ArticleSQL Select Query Examples-retrieve Last five records,subquery , last letters...
Select Query to retrieve Last five records of the tableselect * from emp a where 5 >= (select count(1) from emp b where a.empno != b.empno and a.sal <= b.sal)order by a.sal descassumptions:1....
View ArticleAnti Virus Tips-Remove autorun.inf folder virus,protect from virus,Best...
Remove autorun.inf folder virus1. click on Start Button2.then Click on Run 3. write down "cmd" in the Run box then you can see a CMD box.Here, you will write down cd...(Change directory) you can see...
View ArticleWhate is Java Servlets ,JDBC,JAVA API,Webserver
WHAT IS JAVA SERVLETS ?An HTTP servlet can generate an HTML page, either when the servlet is accessed explicitly by name, by following a hypertext link, or as the result of a form submission. An HTTP...
View ArticleSQL Join Query Tips-Example of right ,self query itselft,anti ,left join,Full...
Example of self join query in sql.Summary :If you are looking for information like self join query mean table used self as join let us see following example to get more clear.Hear I used right join...
View ArticleSQL Stored Procedure Examples-Create,Delete and Drop Table ,insert,row count
Create,Delete and Drop Table Through SQL Stored ProcedureFollowing is code which you can create new Stored procedure in SQL Stored procedure section and can write following code. You can understand...
View ArticleRe-indexes all the tables using DBCC BREINDEX command
Summary:re-indexes all the tables using DBCC BREINDEX command.This goes and re-indexes all the tables and takes about 7 minutes and make an improvement of 10%Details:USE DbName_1 --Enter the name of...
View ArticleSimple command to shrink all database at once to reduce database size in SQL...
Simple command to shrink all database at once to reduce database size in SQL serverThis is very simple command to shrink all database at once to reduce database size in SQL server but one thing you...
View ArticleDifference between primary key and unique key,Find Primary key,Index help,Not...
Difference between primary key and unique keyA table can have only one primary key but multiple unique keys.unique key may have null value which is not allowed in primary.simply primary key is unique +...
View ArticleSelect query to get Database owner and Get package name from the database in SQL
To get owner of all database in sql you can run following query in sql server query editor.select suser_sname(owner_sid) from sys.databasesTo get owner of particular database like Testdb is database...
View ArticleCreate or replace trigger before insert on field in sql
1.Create or replace trigger before insert on field in sqlCreate or replace trigger t1 Before insert on EmployeeFor each rowdeclarev_firstname Employee.firstname%type;v_lastname...
View ArticleWorkbook Data Into One Single Sheet,Sort Alphabetically ,Row column height...
Workbook Data Into One Single Sheet using MS Excel If you have 10 workbook each workbook have single sheet of data (tab name should be anything) if you need consolidation sheet into all 10 workbook...
View ArticleCode To Fill data table in DataGrid,fill static, get DataSet combo in asp.Net
Code To Fill DataGrid using asp.net You can try Code To Fill DataGrid using asp.net common class. After creation these methods you need to call these method to your form editors by creating class...
View ArticleCommand to know the incoming network connections,transmitting data to server...
Command to know the incoming network connections in unix to know a command which would help knowing the incoming network connections through(from & to) different ip-address:portsnetstat -anp |...
View Article