Viewing 15 posts - 1 through 15 (of 30 total)
Yes, right you are, I will certainly learn the tally method for making life much easier and thank you very much.
June 25, 2013 at 5:53 pm
THANK YOU FOR NICE RESPONSE. THE CODE DOES THE TRICK. BUT SOON I LIKE TO LEARN THE TALLY.
June 24, 2013 at 9:14 am
First create a development environment. Attach all the database in a local machine in a single instance. Now take time and have plan for the identical keys. May be add...
June 23, 2013 at 10:38 pm
use astrealerpdba
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE dbo.changemr
@counter int
...
June 23, 2013 at 10:22 pm
I execute a sql query in the database and the code was like,
Select a.comcod, a.actcode, b.actdesc, a.rescode, c.resdesc, a.trnam, a.refnum, a.vounum
from actrna as a
inner join acinf as b on a.comcod=b.comcod...
June 3, 2013 at 9:47 pm
Try this
use databasename
select a.Col1, a.Col2, b.Val from table2 as b
inner join table1 as a
on a.col1=b.ID
June 3, 2013 at 3:48 am
sqlsdev (6/2/2013)
Table 1:
Col1 Col2
1 _A
2 _B
3 ...
June 3, 2013 at 3:45 am
"List of Heads" of A, B, C, D data type is nvarchar(250)
March 10, 2013 at 6:36 pm
I like to insert SIRCODE in Sequence like x= x+1000
Then it look like
Comcod Sircode ...
March 10, 2013 at 12:03 am
I like to see the query as below where no duplicate party name.
COMCOD PARTY CODE PARTYNAME
3305 ...
March 9, 2013 at 11:58 pm
Actually I want to update by set command for multiple rows containing the ACTCODE in a sequence like (001, 002, 003 ETC) with the sample provided earlier.
Sample Data, ACTCODE...
February 12, 2013 at 8:15 pm
Viewing 15 posts - 1 through 15 (of 30 total)