Viewing 8 posts - 1 through 8 (of 8 total)
you can use bulk insert.
February 6, 2009 at 4:51 am
since more than one user is inserting record at a time so in your tabe duplicate values are going in primary key column. you can use transactions to check the...
February 6, 2009 at 4:45 am
[font="Arial"]thanks a lot chris....its working .....thanks once again[/font] :):):)
February 3, 2009 at 5:06 am
hi chris...
need your help once again...
actully producerid is of varchar type so i guess we cant use min for distinct producerid.and for same producer there are numerous producerid. so the...
February 3, 2009 at 4:14 am
one more thing chris.....
SELECT f.*,
c.VENDORNUM,
pm.producerid
INTO #feedrecord
FROM idscomsql.dbo.feedrecord f
LEFT JOIN (SELECT MIN(producerid) AS producerid, producer...
February 3, 2009 at 12:22 am
Thanx a lot chris. thanx for your help. whith this i guess i'll be able to achive my goal.:)
February 2, 2009 at 9:20 pm
FIRST OF ALL THANX A LOT
my code is like
Create PROCEDURE spInsert
AS
BEGIN
declare @clientCode varchar(10)
declare @dbstring varchar(50)
set @clientCode='kh'
set @dbstring = @clientCode + 'idsnetsql'
print @dbstring
exec('use ' + @dbstring +
'
Select *...
February 2, 2009 at 4:50 am
Viewing 8 posts - 1 through 8 (of 8 total)