Viewing 15 posts - 61 through 75 (of 132 total)
Hi!!!!!
Can u tell me ur table structure....and which fileld updated recently......do u have any idea @ that...........
October 20, 2005 at 7:27 am
Hey RGS'us!!!!!!!
I want to update IDs in REGSIST table by IDs in GRANTED......
Is that possible.......
October 20, 2005 at 7:23 am
Hi!!!!!!
there is possibilities of retriving data which are newly inserted in original database by comparing it with mirror database but it is hard to retrive data which are updated....
October 20, 2005 at 7:14 am
Hi!!!!!!
there is possibilities of retriving data which are newly inserted in original database by comparing it with mirror database but it is hard to retrive data which are updated....
October 20, 2005 at 7:14 am
Hi!!!
As far as PK/FK relationship concern .... there is not possiblilities of UPDATEing
statement..But it will possible for u when u remove the Relationship between them and UPDATE PK table and then...
October 20, 2005 at 7:04 am
Hi!!!!!
SELECT SUBSTRING('intra_005561.pdf',0,PATINDEX('%.p%','intra_005561.pdf')) AS FIRSTPART,RIGHT('intra_005561.pdf',LEN('intra_005561.pdf')+ 1 - PATINDEX('%.p%','intra_005561.pdf')) AS SECONDPART
October 20, 2005 at 1:55 am
Hi!!!!!
Can u paste ur insert query by which u r inserting records in central server....
October 20, 2005 at 12:30 am
hi!!!!
Can u give me which query u run ...and what error msg u got there......
October 19, 2005 at 7:58 am
Hi!!!!!
as seen ur post ur not alias subquery here..
select * into #temp from (select convert(varchar,convert(datetime,Date_Lst_Iss),103),Part_Num from dbo.Part_Mast where Part_Num LIKE (RTRIM('258095GB') + '%')) P
and then run this ......
select...
October 19, 2005 at 7:09 am
Hi!!!
I agree with VLADAN......
here is ur solution..
SELECT * FROM TABLE1
WHERE MARKS NOT IN (SELECT MAX(MARKS) FROM TABLE1)
UNION
SELECT E.ID,E.MARKS FROM TABLE1 E INNER JOIN (SELECT ID,MAX(MARKS) MARKS FROM TABLE1 GROUP...
October 19, 2005 at 7:04 am
Hi!!!
Actually that was my mistake u should write this way.....
select * into #temp from (select convert(varchar,convert(datetime,Date_Lst_Iss),103),Part_Num from dbo.Part_Mast where Part_Num LIKE (RTRIM('258095GB') + '%')) p
October 19, 2005 at 6:37 am
Hi!!!!
U can do....
select * into #temp from (select Part_Num from dbo.Part_Mast where Part_Num LIKE (RTRIM('258095GB') + '%')) p
and now u can use....
select * from dbo.Part_Mast
where Part_Num in (select Part_Num from #temp)
order...
October 19, 2005 at 6:30 am
Hi!!!
U can do one thing here Go to EM and Delete that ID column by right clicking to it and again right click on the next column where u want...
October 19, 2005 at 6:27 am
Hi!!!
In ur subquery that getting two columns as output which compar with one column from outer query......
by removing convert(varchar,convert(datetime,Date_Lst_Iss),103) u will get output...
select * from dbo.Part_Mast
where Part_Num in (select Part_Num from...
October 19, 2005 at 5:09 am
Hi!!!
May be u r using join somewhere in your DTS so that duplicates row are inserted in ur backups.....or if it possible then filter in the DTS when data is...
October 19, 2005 at 3:40 am
Viewing 15 posts - 61 through 75 (of 132 total)