Viewing 15 posts - 31 through 45 (of 61 total)
Thanks for giving me the solution.
Actually, am working in my college project, where am creating an automate system for managing all the college activities like inserting student details, calculating students...
May 28, 2009 at 11:08 am
Sir,
In second_table, i inserted following data:
----------------------------
proj | valid_from | valid_to
----------------------------
ABCD 1/7/2009 7/7/2009
----------------------------
and in MAIN_TABLE:
--------------------
date |...
May 9, 2009 at 8:56 am
Thanks for replying.
I'll check the T-SQL and reply you back soon.
Thanks again!
May 6, 2009 at 7:05 am
The condition should be in another table column where only date will be provided.
May 5, 2009 at 11:22 pm
Thanks A Lot!
Now it's working superb...THANKs A LOT!
Can I ask you another question?
Whenever am trying to populate this MyTable through updating from multiples tables,am getting the following error:
Key column information...
March 12, 2009 at 7:29 am
Sir, If am doing:
UPDATE MyTable
SET MARKS = 87
WHERE Student = 'Andy' and Course = 'ASM'
Its not allowing to enter the data on 2nd strike and showing...
March 12, 2009 at 5:28 am
Am talking about 3 strikes.
How can I use this counter column or the INSTEAD OF?
I don't want to use in my ASP as if I have to make changes in...
March 11, 2009 at 6:19 pm
Am talking about 3 strikes.
How can I use this counter column or the INSTEAD OF?
I don't want to use in my ASP as if I have to make changes in...
March 11, 2009 at 4:19 pm
GilaMonster (3/4/2009)
mail2payan (3/4/2009)
Which columns determine the matching row in DestinationTable?
Sorry, I did not get this question.
When rows are inserted into MyTable, the matching rows in DestinationTable are updated with cumulative...
March 4, 2009 at 9:14 am
Which columns determine the matching row in DestinationTable?
Sorry, I did not get this question.
For update I used FOR INSERT, UPDATE syntax to make the trigger fire for both events means,...
March 4, 2009 at 8:47 am
Let me explain you in details:
Suppose, am entering followin data in MyTable:
insert MyTable select 'Steve', 'ASM01', 3, 50,0
insert MyTable select 'Steve', 'ASM01', 3, 43,0
Go
Now the Trigger which is attached with...
March 4, 2009 at 8:35 am
Whenever the data is being inserted in MyTable, the Trigger will automatically exceuted and filled the DestinationTable with following data:
--------------------------------------------------
Student course credit Grades Grade Points Quality
--------------------------------------------------
Andy ASM01...
March 4, 2009 at 8:10 am
--This is my StudentMark table, here I had inserted new column called ind_active!
create table dbo.StudentMark(
StudentMark_IDbigint identity not null,
Student_IDbigint not null,
Course_IDbigint not null,
AssgnMrk_IDbigint not null,
Markbigint null,
ind_activeCHAR(1)NOT NULL
Constraint c_ind_active CHECK (ind_active IN...
February 27, 2009 at 10:03 am
Viewing 15 posts - 31 through 45 (of 61 total)