Viewing 15 posts - 226 through 240 (of 250 total)
Thanks for your help, I had not worked with CASE in either of these ways before.
CSDunn
May 28, 2003 at 10:52 am
quote:
Check at http://www.cramsession.com/ to see what the most recent version of the test are.
May 20, 2003 at 9:26 am
quote:
Look at ExamCram and ExamPrep books also.
Thanks for your input!
CSDunn
May 19, 2003 at 4:32 pm
quote:
Sybex and Microsoft.
Thanks Patrick, I will look into the Sybex books.
CSDunn
May 19, 2003 at 1:38 pm
quote:
I studied using two books...
If you don't mind sharing, which two books did you use?
Thanks,
CSDunn
May 19, 2003 at 12:34 pm
Thanks for your help. Is the only difference between Implicit and Explicit transaction mode the fact that Explicit transaction mode requires 'BEGIN TRAN'? If that is true then why not...
May 16, 2003 at 2:47 pm
Thanks for your help!
quote:
One way to solve your problem might be to split your big view up into smaller views, I.E. create...
April 17, 2003 at 9:24 am
Please pardon the dumb question, but where is the 'Script Library' you referenced?
Thanks.
CSDunn
April 16, 2003 at 11:56 am
The following tested solution combines both of the suggested ideas, and accomplishes my objective:
******************************************
Create Procedure MMIncompleteRC_sp
@Permnum varchar (12)
AS
IF
(SELECT RC.Incomplete
FROM
tblRCStudentGrades RC
WHERE RC.Permnum = @Permnum) = 1
BEGIN
INSERT tblMMIncompleteRC
SELECT
SD.Permnum,
SD.FirstName,
SD.LastName,
TD.SystemUserName
FROM Student_Data_Main...
April 1, 2003 at 12:21 pm
I was actually able to implement multiple CASE statements in the one View and SP that serve as the Record Sources for a couple of different reports. This saved me...
March 26, 2003 at 1:28 pm
quote:
If you are using ARC with the SQL Server hook/add on installed then you shouldn't be backing up the .ldf directly.
March 21, 2003 at 10:18 am
Thanks for your input. Our network administrator is using ARC. He had already dropped the old dir/file and added the new dir/file for the Log file, and was still getting...
March 20, 2003 at 1:10 pm
Viewing 15 posts - 226 through 240 (of 250 total)