Viewing 15 posts - 1 through 15 (of 63 total)
i want to concat row with comma separator and before that need to add one statement which is common ..
January 14, 2013 at 3:57 am
Yes i need concatenation here i user group_concat function but ,
select group_concat('your perfomance is good in',trait_name order by trait_name separator ',')
but its showing your perfomance is good in numerical,'your perfomance...
January 14, 2013 at 3:46 am
Ok i will read the articles if any doubt then again will ask you... please support me for that.
May 30, 2012 at 7:48 am
Mostly i need to create index on primary key but.... primary key is irself a clustered index.. is there any index which work fast on primary key.
May 30, 2012 at 7:36 am
I have no idea about indexing actually...
can you please tell how it can implement on database.
step i followed to search :-
1. I opened the table design.
2. right click on primary...
May 30, 2012 at 7:23 am
Actually i need all columns from view and storeprocedure.
one of my friend recommended me to use index... i am not using index in database. is it really feasible solution to...
May 30, 2012 at 6:41 am
Can you please tell me what query execution plan does actually to help us in performance tuning? How it could i use?
April 12, 2012 at 10:44 pm
Yah it means i need to take college code in college_cutoffmaster table right???
but i m confused here see below query,
insert into College_Maharashtra_BEngcutoffmaster1([CutoffId],cutoff,collegeid,degreeid,streamid,entranceid,gender,UniversityType,Capround,collegecode)
select a.[CutoffId],[Cutoff],[CollegeId],[DegreeId],[StreamId],[EntranceId],[Gender],[UniversityType],[Capround],b.collegecode from College_CutoffMaster a, College_CutoffCodeTransition b
where a.cutoffid=b.cutoffid
here by...
March 30, 2012 at 4:35 am
I designed table of college_cutoffmaster as a master table there is different collegecode for each stream means each cutoffid will contain different college code.
March 30, 2012 at 4:23 am
I executed it.. all values are coming unique in table but i want a collegecode from cutoffcode transition that is coming null 🙁
March 30, 2012 at 4:18 am
Yes there will be a only one cutoff if in codetransition table
I did a changes u suggested as below,
alter trigger trg_After_Cutoffmaster_Insert on
College_CutoffMaster
FOR INSERT
AS
declare @CutoffId numeric(18,0);
declare @Cutoff numeric(18,0);
declare @CollegeId...
March 30, 2012 at 3:21 am
Please help me i get trapped over here in trigger again,
It's giving duplicate records
tables i have as below
First one
CREATE TABLE [dbo].[College_CutoffMaster](
[CutoffId] [numeric](18, 0) IDENTITY(1,1) NOT NULL,
[Cutoff] [numeric](18, 0) NULL,
[CollegeId] [numeric](18,...
March 30, 2012 at 1:34 am
Yah It's working Now for specific id 🙂
Thank you
March 29, 2012 at 7:57 am
Please see the table [dbo].[Employee_Test]
Emp_IDEmp_nameEmp_SalId
1Anees1000.001
2Rick1200.004
3John1100.002
4Stephen1300.001
5Maria1400.001
6pallavi1400.003
in that one column is exist named "Id"
so want to insert a record for specific id which i mentiond in trigger for inser query see,
insert...
March 29, 2012 at 7:51 am
I implemented trigger on one table,
CREATE TABLE [dbo].[Employee_Test](
[Emp_ID] [int] IDENTITY(1,1) NOT NULL,
[Emp_name] [varchar](100) NULL,
[Emp_Sal] [decimal](10, 2) NULL,
[Id] [numeric](18, 0) NULL
) ON [PRIMARY]
GO
CREATE TABLE [dbo].[Employee_Test_Audit](
[Emp_ID] [int] NULL,
[Emp_name] [varchar](100) NULL,
[Emp_Sal] [decimal](10, 2)...
March 29, 2012 at 7:25 am
Viewing 15 posts - 1 through 15 (of 63 total)