
Search In
In the following article we will go through a solution to a very common requirement of getting count of duplicate rows from SQL server table.
Let us first create a table and add sample data to this table. Col1 in the table is an identity column.
CRE
In the following article we will go through a solution to a very common requirement of getting duplicate rows from SQL Server table based on specific columns.
Let us first create a table and add sample data to this table. Col1 in the table is an iden
We can drop table or database by using DROP keyword.
Syntax:
The DROP TABLE statement is used to delete a table.
DROP TABLE table_name;
The DROP DATABASE statement is used to delete a database.
DROP DATABASE database_name;
Example: Suppose yo
In openerp Dispatch PostgreSQL notifications to the relevant polling threads to Bus.loop listen imbus on db PostgreSQL and create the listen imbus and check the condition dispatch to local threads and greenlets in channel.
Example
use this code in yo
Hello Friends,
Generally we resize image after uploading. If you are looking to resize image with codelgniter. Please follow the code below:
// Include gd library
$config['image_library'] = 'gd2';
// Define your source image path
$config['source
First of all let us know what is symlink. Symlink creates a symbolic link to the existing target with the specified name link.
In PHP we passed Parameters in the following way:
target: Target of the link
link: The link name.
I want to make a symb
If you want to create automated action in odoo, you have to go in .xml file and decide the action menu.
1- The first step is to create a model and to create some fields on this model->
class test_demo(models.Model):
_name = 'test.d
Hello readers, today I guide you "How to create own custom hooks in WordPress".
A crucial but often avoided practice is adding custom hooks to your plugin so that other developers can extend and modify it, without having to fork it
IPayy API is basically a payment gateway by which you can sell anything through your website. In brief, it just generates an OTP number which is called as One Time Password and will send number via msg to your mobile.
Here I am going to show that ho
Hello Friends,
This blog explains how to implement singleton design pattern in c#. So lets start with few basic things:--
What is Singleton ?
A singleton is a class which only allows one instance of itself to be created - and gives simple, easy