Viewing 15 posts - 1 through 15 (of 19 total)
But that way I will not get null values in join column of other table
October 21, 2008 at 2:31 am
Thanks all, the problem was client table had multiple rows with with same client_panno that's a logical error.We are not supposed to have it that way.
October 21, 2008 at 1:23 am
But I want something like this where only null values are returned
select cc.cc_clientcode,cc.cc_rmcode,cc.cc_panno,cc.cc_productname
,c.Client_panno,c.client_userid
--,u.user_userid
from clientcode cc LEFT outer join client c
on cc.cc_panno=c.client_panno order by cc_clientcode
where c.client_panno is null
October 21, 2008 at 12:39 am
I am using Cusror because I am using SSIS package to insert records into the table.Since the SSIS uses bulk insert I can cannot validate individual record .So the cursor...
October 17, 2008 at 3:07 am
I know off course its a bad design. But there are some issues because,these tables are part of an Enterprise SW, its actually CRM and because of this and other...
September 25, 2008 at 11:03 am
The person who created the tables had made the createdby and modifiedby ad datetime so that was the problem.
However I ak u guys for help if i still have other...
August 28, 2008 at 9:07 am
I can guarantee that only one record is inserted at a time because its a enterprise software which I am customizing, since it generates client_clientid by itself i can be...
August 28, 2008 at 8:54 am
The problem was that the trigger was for insert only , after adding update its working.
However let me tell you that. This is for one record at a time ,its...
August 28, 2008 at 7:26 am
Thanks for the reply I might use that method in fact I have been told before to use the method you have advised,but I just want to know what is...
August 18, 2008 at 7:30 am
where and why do i require the where clause. The cursor has
For Select client_activeid from client Order By client_activeid
Open curclientRefId
Fetch Last...
August 18, 2008 at 6:36 am
See the Id should actually be check digit number. I still have to write code for that, I am testing this code because i need to use this format in...
August 18, 2008 at 6:26 am
See this is just a part of the whole requirement I am just splitting it in parts and testing it. I will have field called type so based on the...
August 18, 2008 at 6:16 am
To test that whether it is expecting only one row I uploaded only one row from excel nut even then it did not work..
August 8, 2008 at 7:09 am
First of all really sorry for the late reply.
Thanks for the code but the code is not right in our context.
Let me clear few thing here
1.ClientCode is an empty...
August 8, 2008 at 6:56 am
Also the excel sheet is getting uploaded properly without any error, so only the trigger is not getting executed,
August 6, 2008 at 12:44 am
Viewing 15 posts - 1 through 15 (of 19 total)