Viewing 15 posts - 1 through 15 (of 32 total)
The last option of maintaining two options and deciding the heirarchy looks pretty good. Thank you for your suggestion.
But for the first work around I tried to put an expression...
April 17, 2012 at 6:54 am
Obviously you will get null values in College code until you have a record in College_CutoffCodeTransition with the cutoffid and you cannot insert cuttoffid before you insert data to [College_CutoffMaster].
ie.,...
March 30, 2012 at 4:29 am
My operating system is 32 bit and i installed 32 bit upgrade as I do not know what is bit rate does sql server uses either it 32 or 64
March 30, 2012 at 3:58 am
No Gail,
I upgraded the same instance on the server.
March 30, 2012 at 3:49 am
Pallavi,
I have a couple of questions,
1 . You said there will be only one record for one cutoffid in College_CutoffCodeTransition and cutoffid is identity in [College_CutoffMaster] how...
March 30, 2012 at 3:45 am
Hello all,
I have successfully upgraded my sql server database engine from version 10.0.1600 to 10.50.2500 but when i try to open it after my upgrade , the sql server database...
March 30, 2012 at 3:31 am
Hello Pallavi,
Replace College_CutoffMaster in the select with INSERTED and see how it works and in the mean time I will look into the issue where you are going wrong.
And I...
March 30, 2012 at 2:31 am
Thank You Sean Lange
Ur welcome Pallavi.
March 29, 2012 at 9:30 am
Hello Pallavi,
Here is ur cooked item on the plate
ALTER TRIGGER trgAfterInsert ON [dbo].[Employee_Test]
AFTER INSERT
AS
BEGIN
PRINT 'AFTER INSERT trigger fired.'
INSERT INTO Employee_Test_Audit
(Emp_ID,Emp_Name,Emp_Sal,Id,Audit_Action,Audit_Timestamp)
SELECT EMP_ID,EMP_NAME,EMP_SAL,ID,'Inserted Record -- After Insert Trigger.',GETDATE()
FROMINSERTED
WHEREID = 1
END
GO
Please...
March 29, 2012 at 7:46 am
Pallavi,
I cannot find any id over there do you mean emp_id.?
Can you be a bit clear on the requirement u want .?
Maddy
March 29, 2012 at 7:38 am
Try creating after trigger on the first set of tables and writedown the logic to perform DML operations on the second set with the magic tables Inserted and Deleted it...
March 29, 2012 at 2:31 am
I suggest you write down a trigger on the database.
March 29, 2012 at 2:17 am
I have tried resotring to the qa envirnment with qa file paths and in the error it is showing the location of the dv environment file paths....
and I deleted...
November 9, 2011 at 7:03 am
There are no processes running and the database is not in use i m sure about it.. as a second check i verified too...
November 9, 2011 at 6:50 am
I am struck with the similar problem....
The scenario is something like this :
I have two instances of sql server 2008 r2 on the same server...
November 9, 2011 at 6:17 am
Viewing 15 posts - 1 through 15 (of 32 total)