Source
<iframe frameborder="0" src="http://www.indianotes.com/widgets/indices-ticker/index.php?type=indices-ticker&w=500" width="500" height="100" scrolling="no"></iframe>
DemoProgramming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!
<iframe frameborder="0" src="http://www.indianotes.com/widgets/indices-ticker/index.php?type=indices-ticker&w=500" width="500" height="100" scrolling="no"></iframe>
Demo <iframe frameborder='0' src='http://www.ecb.co.uk/stats-live/live-scores-widget.html?colour=Blue&countiesTeams=null&feed=%2Fstats-live%2Flive-scores-widget.json&internationalTeams=184%2C182%2C5%2C24%2C8%2C2%2C95%2C7%2C3%2C15%2C13%2C11%2C181%2C1%2C6%2C14%2C10%2C4%2C9&miscTeams=null' style='width: 580px; height: 450px;'></iframe>
Demo
Method Name : DateTime.DaysInMonth()
int DateTime.DaysInMonth(year,month)
Eg:
txtNoOfDays.Text = DateTime.DaysInMonth(Convert.ToDateTime(txtDate.Text).Year, Convert.ToDateTime(txtDate.Text).Month).ToString();
Page.ClientScript.RegisterStartupScript(this.GetType(),"CallMyFunction","MyFunction()",true);
/* Drop all non-system stored procs */
DECLARE @name VARCHAR(128) DECLARE @SQL VARCHAR(254) SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] = 'P' AND category = 0 ORDER BY [name]) WHILE @name is not null BEGIN SELECT @SQL = 'DROP PROCEDURE [dbo].[' + RTRIM(@name) +']' EXEC (@SQL) PRINT 'Dropped Procedure: ' + @name SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] = 'P' AND category = 0 AND [name] > @name ORDER BY [name]) END GO
/* Drop all views */
DECLARE @name VARCHAR(128) DECLARE @SQL VARCHAR(254) SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] = 'V' AND category = 0 ORDER BY [name]) WHILE @name IS NOT NULL BEGIN SELECT @SQL = 'DROP VIEW [dbo].[' + RTRIM(@name) +']' EXEC (@SQL) PRINT 'Dropped View: ' + @name SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] = 'V' AND category = 0 AND [name] > @name ORDER BY [name]) END GO
/* Drop all functions */
DECLARE @name VARCHAR(128) DECLARE @SQL VARCHAR(254) SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] IN (N'FN', N'IF', N'TF', N'FS', N'FT') AND category = 0 ORDER BY [name]) WHILE @name IS NOT NULL BEGIN SELECT @SQL = 'DROP FUNCTION [dbo].[' + RTRIM(@name) +']' EXEC (@SQL) PRINT 'Dropped Function: ' + @name SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] IN (N'FN', N'IF', N'TF', N'FS', N'FT') AND category = 0 AND [name] > @name ORDER BY [name]) END GO
/* Drop all Foreign Key constraints */
DECLARE @name VARCHAR(128) DECLARE @constraint VARCHAR(254) DECLARE @SQL VARCHAR(254) SELECT @name = (SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE constraint_catalog=DB_NAME() AND CONSTRAINT_TYPE = 'FOREIGN KEY' ORDER BY TABLE_NAME) WHILE @name is not null BEGIN SELECT @constraint = (SELECT TOP 1 CONSTRAINT_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE constraint_catalog=DB_NAME() AND CONSTRAINT_TYPE = 'FOREIGN KEY' AND TABLE_NAME = @name ORDER BY CONSTRAINT_NAME) WHILE @constraint IS NOT NULL BEGIN SELECT @SQL = 'ALTER TABLE [dbo].[' + RTRIM(@name) +'] DROP CONSTRAINT [' + RTRIM(@constraint) +']' EXEC (@SQL) PRINT 'Dropped FK Constraint: ' + @constraint + ' on ' + @name SELECT @constraint = (SELECT TOP 1 CONSTRAINT_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE constraint_catalog=DB_NAME() AND CONSTRAINT_TYPE = 'FOREIGN KEY' AND CONSTRAINT_NAME <> @constraint AND TABLE_NAME = @name ORDER BY CONSTRAINT_NAME) END SELECT @name = (SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE constraint_catalog=DB_NAME() AND CONSTRAINT_TYPE = 'FOREIGN KEY' ORDER BY TABLE_NAME) END GO
/* Drop all Primary Key constraints */
DECLARE @name VARCHAR(128) DECLARE @constraint VARCHAR(254) DECLARE @SQL VARCHAR(254) SELECT @name = (SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE constraint_catalog=DB_NAME() AND CONSTRAINT_TYPE = 'PRIMARY KEY' ORDER BY TABLE_NAME) WHILE @name IS NOT NULL BEGIN SELECT @constraint = (SELECT TOP 1 CONSTRAINT_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE constraint_catalog=DB_NAME() AND CONSTRAINT_TYPE = 'PRIMARY KEY' AND TABLE_NAME = @name ORDER BY CONSTRAINT_NAME) WHILE @constraint is not null BEGIN SELECT @SQL = 'ALTER TABLE [dbo].[' + RTRIM(@name) +'] DROP CONSTRAINT [' + RTRIM(@constraint)+']' EXEC (@SQL) PRINT 'Dropped PK Constraint: ' + @constraint + ' on ' + @name SELECT @constraint = (SELECT TOP 1 CONSTRAINT_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE constraint_catalog=DB_NAME() AND CONSTRAINT_TYPE = 'PRIMARY KEY' AND CONSTRAINT_NAME <> @constraint AND TABLE_NAME = @name ORDER BY CONSTRAINT_NAME) END SELECT @name = (SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE constraint_catalog=DB_NAME() AND CONSTRAINT_TYPE = 'PRIMARY KEY' ORDER BY TABLE_NAME) END GO
/* Drop all tables */
DECLARE @name VARCHAR(128) DECLARE @SQL VARCHAR(254) SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] = 'U' AND category = 0 ORDER BY [name]) WHILE @name IS NOT NULL BEGIN SELECT @SQL = 'DROP TABLE [dbo].[' + RTRIM(@name) +']' EXEC (@SQL) PRINT 'Dropped Table: ' + @name SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] = 'U' AND category = 0 AND [name] > @name ORDER BY [name]) END GO
declare @procName varchar(500)
declare cur cursor
for select [name] from sys.objects where type = 'p'
open cur
fetch next from cur into @procName
while @@fetch_status = 0
begin
exec('drop procedure ' + @procName)
fetch next from cur into @procName
end
close cur
deallocate cur
Card No: 4111 -1111 - 1111 - 1111
Exp Date: 07/2016
CVV: 123
Name of the Issuing Bank: EBS
create table T (
id int identity,
colA varchar(30) not null,
colB varchar(30) not null
)
delete T
from T t1
where exists
(select null from T t2
where t2.colA = t1.colA
and t2.colB = t1.colB
and t2.id <> t1.id)
delete T
where id not in
(select min(id) from T
group by colA, colB)
public double GetRandomNumber(double minimum, double maximum)
{
Random random = new Random();
return random.NextDouble() * (maximum - minimum) + minimum;
}
var now = "04/09/2013 15:00:00";
var then = "04/09/2013 14:20:30";
moment.utc(moment(now,"DD/MM/YYYY HH:mm:ss").diff(moment(then,"DD/MM/YYYY HH:mm:ss"))).format("HH:mm:ss")
// outputs: "00:39:30"
var now = "04/09/2013 15:00:00";
var then = "02/09/2013 14:20:30";
var ms = moment(now,"DD/MM/YYYY HH:mm:ss").diff(moment(then,"DD/MM/YYYY HH:mm:ss"));
var d = moment.duration(ms);
var s = Math.floor(d.asHours()) + moment.utc(ms).format(":mm:ss");
// outputs: "48:39:30"
d.minutes()
and d.seconds()
separately, but you would also have to zeropad them. <html>
<body>
<p id="p1">Select a value from the list below, to change this element's opacity!</p>
<select onchange="myFunction(this);" size="5">
<option>0
<option>0.2
<option>0.5
<option>0.8
<option selected="selected">1
</select>
<script>
function myFunction(x) {
// Return the text of the selected option
var opacity = x.options[x.selectedIndex].text;
var el = document.getElementById("p1");
if (el.style.opacity !== undefined) {
el.style.opacity = opacity;
} else {
alert("Your browser doesn't support this example!");
}
}
</script>
</body>
</html>
OutPutStartDate
and EndDate
are of type DateTime
:(EndDate - StartDate).TotalDays
DateTime original = new DateTime(year, month, day, 8, 0, 0);
DateTime updated = original.Add(new TimeSpan(5,0,0));
DateTime original = new DateTime(year, month, day, 17, 0, 0);
DateTime updated = original.Add(new TimeSpan(-2,0,0));
DateTime original = new DateTime(year, month, day, 17, 30, 0);
DateTime updated = original.Add(new TimeSpan(0,45,0));
SELECT
t.NAME AS TableName,
i.name as indexName,
p.[Rows],
sum(a.total_pages) as TotalPages,
sum(a.used_pages) as UsedPages,
sum(a.data_pages) as DataPages,
(sum(a.total_pages) * 8) / 1024 as TotalSpaceMB,
(sum(a.used_pages) * 8) / 1024 as UsedSpaceMB,
(sum(a.data_pages) * 8) / 1024 as DataSpaceMB
FROM
sys.tables t
INNER JOIN
sys.indexes i ON t.OBJECT_ID = i.object_id
INNER JOIN
sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id
INNER JOIN
sys.allocation_units a ON p.partition_id = a.container_id
WHERE
t.NAME NOT LIKE 'dt%' AND
i.OBJECT_ID > 255 AND
i.index_id <= 1
GROUP BY
t.NAME, i.object_id, i.index_id, i.name, p.[Rows]
ORDER BY
--object_name(i.object_id)
rows desc
SELECT sc.name +'.'+ ta.name TableName
,SUM(pa.rows) RowCnt
FROM sys.tables ta
INNER JOIN sys.partitions pa
ON pa.OBJECT_ID = ta.OBJECT_ID
INNER JOIN sys.schemas sc
ON ta.schema_id = sc.schema_id
WHERE ta.is_ms_shipped = 0 AND pa.index_id IN (1,0)
GROUP BY sc.name,ta.name
ORDER BY SUM(pa.rows) DESC
protected void Button1_Click(object sender, EventArgs e)
{
string srt = @"select e.EmployeeId,d.Designation,u.username,u.userpwd from Employees e
inner join DesignationMaster d on d.Designationid=e.DesignationID
inner join userdet u on u.EmpId=e.EmployeeId";
SqlDataAdapter adt = new SqlDataAdapter(srt, con);
DataTable dt = new DataTable();
adt.Fill(dt);
GridView1.DataSource = dt;
GridView1.DataBind();
}
protected void Button2_Click(object sender, EventArgs e)
{
string srt = @"select e.EmployeeId,d.Designation,u.username,u.userpwd from Employees e
inner join DesignationMaster d on d.Designationid=e.DesignationID
inner join userdet u on u.EmpId=e.EmployeeId";
SqlDataAdapter adt = new SqlDataAdapter(srt, con);
DataTable dt = new DataTable();
adt.Fill(dt);
EnumerableRowCollection<DataRow> filter = from row in dt.AsEnumerable() where row.Field<string>("Designation") == "Asst.Professor" select row;
DataView DV = new DataView();
DV = filter.AsDataView();
GridView1.DataSource = DV;
GridView1.DataBind();
}
protected void Button3_Click(object sender, EventArgs e)
{
string srt = @"select e.EmployeeId,d.Designation,u.username,u.userpwd from Employees e
inner join DesignationMaster d on d.Designationid=e.DesignationID
inner join userdet u on u.EmpId=e.EmployeeId";
SqlDataAdapter adt = new SqlDataAdapter(srt, con);
DataTable dt = new DataTable();
adt.Fill(dt);
EnumerableRowCollection<DataRow> filter = from row in dt.AsEnumerable() where row.Field<string>("username").Contains(TextBox1.Text) select row;
DataView dv = new DataView();
dv = filter.AsDataView();
GridView1.DataSource = dv;
GridView1.DataBind();
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = "";
int[] a = { 1, 5, 4, 8, 9, 6 };
Label1.Text = "Original Array";
for (int i = 0; i < a.Length; i++)
{
Label1.Text += "<br>" + a[i].ToString();
}
Label1.Text = "<br>Linq";
var elements =from element in a where element>5 select element;
foreach (var x in elements)
{
Label1.Text += "<br>" + x;
}
}
Output
public static string NumbersToWords(int inputNumber)
{
int inputNo = inputNumber;
if (inputNo == 0)
return "Zero";
int[] numbers = new int[4];
int first = 0;
int u, h, t;
System.Text.StringBuilder sb = new System.Text.StringBuilder();
if (inputNo < 0)
{
sb.Append("Minus ");
inputNo = -inputNo;
}
string[] words0 = {"" ,"One ", "Two ", "Three ", "Four ",
"Five " ,"Six ", "Seven ", "Eight ", "Nine "};
string[] words1 = {"Ten ", "Eleven ", "Twelve ", "Thirteen ", "Fourteen ",
"Fifteen ","Sixteen ","Seventeen ","Eighteen ", "Nineteen "};
string[] words2 = {"Twenty ", "Thirty ", "Forty ", "Fifty ", "Sixty ",
"Seventy ","Eighty ", "Ninety "};
string[] words3 = { "Thousand ", "Lakh ", "Crore " };
numbers[0] = inputNo % 1000; // units
numbers[1] = inputNo / 1000;
numbers[2] = inputNo / 100000;
numbers[1] = numbers[1] - 100 * numbers[2]; // thousands
numbers[3] = inputNo / 10000000; // crores
numbers[2] = numbers[2] - 100 * numbers[3]; // lakhs
for (int i = 3; i > 0; i--)
{
if (numbers[i] != 0)
{
first = i;
break;
}
}
for (int i = first; i >= 0; i--)
{
if (numbers[i] == 0) continue;
u = numbers[i] % 10; // ones
t = numbers[i] / 10;
h = numbers[i] / 100; // hundreds
t = t - 10 * h; // tens
if (h > 0) sb.Append(words0[h] + "Hundred ");
if (u > 0 || t > 0)
{
if (h > 0 || i == 0)
sb.Append("and ");
if (t == 0)
sb.Append(words0[u]);
else if (t == 1)
sb.Append(words1[u]);
else
sb.Append(words2[t - 2] + words0[u]);
}
if (i != 0) sb.Append(words3[i - 1]);
}
return sb.ToString().TrimEnd();
}
A pivot table is a regularly used technique of shortening and displaying particular report information by means of consortium and aggregating values. Pivot tables are easily shaped by office users using Microsoft Excel or MS Access. Sincepivot table enables information builders and BI (Business Intelligence) specialists authorize their appearance of information and amplify the visibility andunderstandabilityof mined information, pivot tables are widespread and favored widely. Pivot tables exhibit information in tabular form. The pivot table formatting is not dissimilar than a tabular report formatting. But the tuples are produced by the statement information itself.
In this example i am using a temp table.
CREATE TABLE #Product(Cust VARCHAR(25), Product VARCHAR(20), QTY INT) INSERT INTO #Product(Cust, Product, QTY) VALUES('KATE','VEG',2) INSERT INTO #Product(Cust, Product, QTY) VALUES('KATE','SODA',6) INSERT INTO #Product(Cust, Product, QTY) VALUES('KATE','MILK',1) INSERT INTO #Product(Cust, Product, QTY) VALUES('KATE','BEER',12) INSERT INTO #Product(Cust, Product, QTY) VALUES('FRED','MILK',3) INSERT INTO #Product(Cust, Product, QTY) VALUES('FRED','BEER',24) INSERT INTO #Product(Cust, Product, QTY) VALUES('KATE','VEG',3) Select * from #Product order by Cust
Cust Product QTY
------------------------- -------------------- -----------
FRED MILK 3
FRED BEER 24
KATE VEG 3
KATE VEG 2
KATE SODA 6
KATE MILK 1
KATE BEER 12
(7 row(s) affected)
SELECT CUST, VEG, SODA, MILK, BEER, CHIPS FROM ( SELECT CUST, PRODUCT, QTY FROM #Product) up PIVOT ( SUM(QTY) FOR PRODUCT IN (VEG, SODA, MILK, BEER, CHIPS) ) AS pvt ORDER BY CUST
CUST VEG SODA MILK BEER CHIPS --------- ----------- ----------- ----------- ----------- ----------- --------- FRED NULL NULL 3 24 NULL KATE 5 6 1 12 NULL (2 row(s) affected)
SELECT PRODUCT, FRED, KATE FROM ( SELECT CUST, PRODUCT, QTY FROM #Product) up PIVOT (SUM(QTY) FOR CUST IN (FRED, KATE)) AS pvt ORDER BY PRODUCT
PRODUCT FRED KATE
-------------------- ----------- -----------
BEER 24 12
MILK 3 1
SODA NULL 6
VEG NULL 5
(4 row(s) affected)
protected void Button1_Click(object sender, EventArgs e) { ExportToPDF(); } private void ExportToPDF() { Document MyDocumnet = new Document(PageSize.LEDGER, 30, 30, 30, 30); System.IOMemoryStream MyReport = new System.IOMemoryStream(); PdfWriter writer = PdfWriter.GetInstance(MyDocumnet, MyReport); MyDocumnet.AddAuthor("Aravind"); MyDocumnet.AddSubject("My Firsr Pdf"); MyDocumnet.Open(); string strImagePath = Server.MapPath("StudentsPhoto/6353878428761513791.gif"); iTextSharp.textTable tblHead = new iTextSharp.textTable(1) { WidthPercentage = 50 }; tblHead.Padding = 2; tblHead.Spacing = 0; iTextSharp.textImage imgLogo = iTextSharp.text.Image.GetInstance(strImagePath); Cell cellHead1 = new Cell(imgLogo); cellHead1.HorizontalAlignment = Element.ALIGN_CENTER; cellHead1.VerticalAlignment = Element.ALIGN_MIDDLE; cellHead1.Leading = 8; cellHead1.Colspan = 1; cellHead1.BackgroundColor = Color.LIGHT_GRAY; cellHead1.Border = Rectangle.NO_BORDER; tblHead.AddCell(cellHead1); Cell cellHead2 = new Cell(new Phrase("APPLICATION FOR ADMISSION TO B-TECH COURSE UNDER MANAGEMENT QUOTA",FontFactory.GetFont("Arial Narrow", 14, Font.BOLD + Font.UNDERLINE,Color.BLACK ))); cellHead2.HorizontalAlignment = Element.ALIGN_CENTER; cellHead2.VerticalAlignment = Element.ALIGN_MIDDLE; cellHead2.Leading = 8; cellHead2.Colspan = 1; cellHead2.BackgroundColor = Color.LIGHT_GRAY; cellHead2.Border = Rectangle.NO_BORDER; tblHead.AddCell(cellHead2); Cell cellHead3 = new Cell(new Phrase(" ")); cellHead3.HorizontalAlignment = Element.ALIGN_CENTER; cellHead3.VerticalAlignment = Element.ALIGN_MIDDLE; cellHead3.Leading = 8; cellHead3.Colspan = 1; cellHead3.BackgroundColor = Color.LIGHT_GRAY; cellHead3.Border = Rectangle.NO_BORDER; tblHead.AddCell(cellHead3); cellHead3 = new Cell(new Phrase(" ")); cellHead3.HorizontalAlignment = Element.ALIGN_CENTER; cellHead3.VerticalAlignment = Element.ALIGN_MIDDLE; cellHead3.Leading = 8; cellHead3.Colspan = 1; cellHead3.BackgroundColor = Color.LIGHT_GRAY; cellHead3.Border = Rectangle.NO_BORDER; tblHead.AddCell(cellHead3); MyDocumnet.Add(tblHead); iTextSharp.textTable tblStdDetails = new iTextSharp.textTable(4) { WidthPercentage = 50 }; tblStdDetails.Padding = 3; tblStdDetails.Spacing = 2; AddCell(tblStdDetails, ""); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, "Application Number"); AddCell(tblStdDetails, ": " + lblApplicaionNo.Text); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, "Category"); AddCell(tblStdDetails,": Management"); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, "Name"); AddCell(tblStdDetails, ": " + lblFname.Text + " " + lblMidName.Text + " " + lblLastName.Text); AddCell(tblStdDetails, ""); string strAdress = lblHomeName.Text + "\n " + lblPo.Text + "\n " + lblPlace.Text + "\n " + lblDistrict.Text + "\n " + lblState.Text + "\n " + lblPo.Text; AddCell(tblStdDetails, ""); AddCell(tblStdDetails, "Address"); AddCell(tblStdDetails, ": " + strAdress); AddCell(tblStdDetails,""); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, "Date"); AddCell(tblStdDetails, ": " + DateTime.Now.ToShortDateString()); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, ""); AddCell(tblStdDetails, ""); MyDocumnet.Add(tblStdDetails); MyDocumnet.Close(); Response.Clear(); Response.AddHeader("content-disposition", "attachment;filename=MyPdf.pdf"); Response.ContentType = "application/pdf"; Response.BinaryWrite(MyReport.ToArray()); Response.End(); } private void AddCell(iTextSharp.textTable tbl, string strData) { Cell MyCell = new Cell(new Phrase(strData, FontFactory.GetFont("Arial Narrow", 12, iTextSharp.text.Font.NORMAL))); MyCell.HorizontalAlignment = Element.ALIGN_LEFT; MyCell.VerticalAlignment = Element.ALIGN_TOP; MyCell.Leading = 8; MyCell.Colspan = 1; MyCell.Border = iTextSharp.text.Rectangle.NO_BORDER; tbl.AddCell(MyCell); }
EMPLOYEE_ID
|
FIRST_NAME
|
LAST_NAME
|
SALARY
|
JOINING_DATE
|
DEPARTMENT
|
1
|
John
|
Abraham
|
1000000
|
01-JAN-13 12.00.00 AM
|
Banking
|
2
|
Michael
|
Clarke
|
800000
|
01-JAN-13 12.00.00 AM
|
Insurance
|
3
|
Roy
|
Thomas
|
700000
|
01-FEB-13 12.00.00 AM
|
Banking
|
4
|
Tom
|
Jose
|
600000
|
01-FEB-13 12.00.00 AM
|
Insurance
|
5
|
Jerry
|
Pinto
|
650000
|
01-FEB-13 12.00.00 AM
|
Insurance
|
6
|
Philip
|
Mathew
|
750000
|
01-JAN-13 12.00.00 AM
|
Services
|
7
|
TestName1
|
123
|
650000
|
01-JAN-13 12.00.00 AM
|
Services
|
8
|
TestName2
|
Lname%
|
600000
|
01-FEB-13 12.00.00 AM
|
Insurance
|
EMPLOYEE_REF_ID
|
INCENTIVE_DATE
|
INCENTIVE_AMOUNT
|
1
|
01-FEB-13
|
5000
|
2
|
01-FEB-13
|
3000
|
3
|
01-FEB-13
|
4000
|
1
|
01-JAN-13
|
4500
|
2
|
01-JAN-13
|
3500
|