Viewing 13 posts - 1 through 13 (of 13 total)
Hi Guys,
Thank you for your contribution guys. My sister's doing oracle pl/sql so i thought SQL Servercentral Gurus could be of help. I've advised her to post it in an...
April 23, 2012 at 12:01 pm
hi paul i did:
Create procedure QuestionSelector(@QuizID int)
As
Select statements.
Then i exec QuestionSelector @QuizID = 1; and its working thanks alot. I appreciate your patience and i'm really grateful
March 15, 2010 at 5:07 pm
Hi paul,
I totally apologize for the troubles, as it is i'm still mastering T/SQL programming. I just executed the questionSelector procedure and i got this error:
Msg 8146, Level 16, State...
March 13, 2010 at 12:04 am
Hi Paul White, here are my schemas:
/*To create Question Table */
create Table Question(
QuestionID int not null
,Title varchar(max) not null
,Answer1 varchar(max) not null
,Answer2 varchar(max) not null
,Answer3 varchar(max) not null
,Answer4 varchar(max) not...
March 12, 2010 at 9:12 pm
I tried, its not giving me any errors. But its not fetching any data from the Question Table. The dbo.Question has already being polpulated with data. When i run the...
March 12, 2010 at 1:13 am
Hi Paul white,
I've never come across iTVF. what does it mean?
March 12, 2010 at 12:29 am
Hi Jeff Moden, Hi Paul White.
I apologize if i provided insuffient information. That said, here's roughly what i want to achieve:
I have 4 tables in my database, one table is...
March 11, 2010 at 9:44 pm
hi,
I created a Procedure and and placed the statements in the procedure....then i called it as a datasource and it worked. But its not yet working for my purpose yet.
the...
March 7, 2010 at 2:16 am
Hi SS,
You've being of immense help...i'll fix dat area...and let you know as sonn as i do. Once again tank u very much!
February 28, 2010 at 8:27 pm
Hi,
lol...i know PL/SQL is the SQL dialect for oracle database and T-SQL is for microsoft server. I'm still a fresher! Can u tell me where to place the script you...
February 27, 2010 at 5:22 am
Hi,
Tanks alot for going to great length and writing this PL/SQL script. I'm still mastering Pl?QL.
You might have guessed i'm using Visual Studio 2008 and my Database resides on MS...
February 25, 2010 at 7:37 pm
Hi SSCrazy,
i have a total of 50 questions for a particular test. so i tied:
SELECT Top(40) [QuestionID], [Title], [Answer1], [Answer2], [Answer3], [Answer4], [CorrectAnswer], [QuestionOrder] FROM [Question] WHERE ([QuizID] = @QuizID)...
February 24, 2010 at 8:58 pm
Tanks for your reply. I droped the "," and i got a syntax error
February 24, 2010 at 8:52 pm
Viewing 13 posts - 1 through 13 (of 13 total)