Viewing 15 posts - 1 through 15 (of 24 total)
The problem is that I dont have a way if changing the source code. this is an old ERP system (PSI) that its was based on SQL server 7. now...
September 23, 2016 at 12:35 pm
This Payroll System will not be apply to USA System. This will be in Europe. That's why we need a Unique System since the most of Software system are based...
July 6, 2009 at 3:17 pm
Our Boss wants something unique not one off the Shelf. Plus the Application will be simple just keeping monthly payroll and reports
July 6, 2009 at 2:07 pm
thank you all I found the right Solution. Here is if someone is interested:
SELECT case when Max(Id)+1 is NULL then IDENT_CURRENT ('tblJobs') else Max(Id)+1 end from tblJobs
this one solves...
May 8, 2008 at 11:35 am
There would be a problem with my first Item. It will not return 1 it will return null......
May 7, 2008 at 7:01 am
HI, Im using something like that But Im handling in the Code:
protected void EditStaffRoles()
{
try
...
April 30, 2008 at 4:37 am
Thanks Jason ,
I got it working by using RowNumber = ROW_NUMBER() OVER(Order BY ProductName)
Thanks everyone for all your help
April 11, 2008 at 2:06 am
For somehow it doesnt work on my database. Actually i display the klient code Also( The code of the person that Sell this products) When I have more than One...
April 10, 2008 at 9:44 am
HI Jason
thanks for the Query but I still dont get the Expected results. It repeats the same product name for the same client three times?????
Seems like the ProductName soesnt...
April 10, 2008 at 8:58 am
here is a sample of the Query . From the query below Im getting only the Totals Order Amount in Dollars for each Product quarterly.
I want to display also...
April 10, 2008 at 5:41 am
Hi have you ever try to use varchar instead of datetime parameter??
In UK system is better like that:
declare @start_date as varchar(10)
set @start_date = convert(varchar, '24/07/2007', 103)
...
April 3, 2008 at 2:00 pm
HI, I think its best for yu to create the database for each one so you have control and Assign a single user to single database. That way the...
February 15, 2008 at 4:06 am
Viewing 15 posts - 1 through 15 (of 24 total)