Viewing 15 posts - 196 through 210 (of 247 total)
A million and one thanks! It was as easy as you described!!!!!
September 11, 2005 at 10:30 am
To me that is just a matter of permissions not ability. Though i don't want to delete all the tests now, i would prefer to make them inactive, but years...
August 17, 2005 at 10:15 am
Not that you guys like my book MS SQL Server2000 Bible, but it makes it sound as if DRI using Cascade Deletes are preferable.
p 320 says: "Implementing cascade deletes manually...
August 17, 2005 at 9:41 am
I don't know. For some reason, i had the impression that you had left but that you would answer when got back in. Then to see this comment, i thought...
August 17, 2005 at 8:51 am
Thanks guys! I'm trying to understand this issue. It didn't take me long to understand what was meant by circular references. However, I didn't see what was wrong with it....
August 17, 2005 at 8:46 am
I understand Remi Gregoire. I was just giving more information because my assumptions must be wrong !
August 16, 2005 at 1:33 pm
My reasoning on this is that if you delete a category, it should delete the questions that belong to it, the answer that belong to those questions.
If there are completed_categories...
August 16, 2005 at 1:30 pm
Sorry Noel. I misread. But i sent everything the last time.
August 16, 2005 at 1:18 pm
Here is the script for all the tables. Thanks guys!
Use FAE
GO
CREATE TABLE FAE.dbo.Centers
(
CenterID tinyint NOT NULL IDENTITY PRIMARY KEY,
Center varchar(30) NOT...
August 16, 2005 at 1:16 pm
CREATE TABLE FAE.dbo.EmployeeTests
(
EmployeeTestID int NOT NULL IDENTITY PRIMARY
KEY,
TestID tinyint NOT NULL FOREIGN KEY
REFERENCES dbo.Tests
ON DELETE CASCADE,
EmpID smallint NOT NULL FOREIGN KEY
...
August 16, 2005 at 1:06 pm
Thanks guys and Noel!
I think i'm finally starting to understand the BOL. You can do a search and then click the contents tab and see all the related info in...
August 12, 2005 at 4:41 pm
Gimli, he does seem to differentiate on this point.
( I had explained a little more but every now and them my info gets lost when i press post reply.)
August 12, 2005 at 10:26 am
Thanks very much Dylan! I have a lot to learn. I'm in the process of looking up info so i can understand deleted and inserted tables better. Now i see,...
August 12, 2005 at 9:49 am
That was all it said on that page. And i do understand that a book for novices, like myself, tends to over simplify.
The statement, i quoted earlier, was the first...
August 12, 2005 at 9:15 am
I find that very interesting guys! My book MS SQL Server 2000 Bible says under Stored Procedures page 403: "Store procedures are compiled and the fastest possible means of executing...
August 12, 2005 at 7:52 am
Viewing 15 posts - 196 through 210 (of 247 total)