TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Prakash Mondal
NA
288
210.6k
Can a trigger create a table ?????
Mar 9 2013 4:43 AM
1st Table:
create table subject_store(sub_name varchar(20),sub_id varchar(20));
=====Trigger========
create or replace trigger ttrr
after insert on subject_srote
for each row
begin
create table :new.sub_name(qs_no varchar(20), qs varchar(20),qs_ans varchar(20));
end;
/
Problem:
create command can't accepted........
but, how it can be happen in sql server....????????
Reply
Answers (
1
)
What is difference between Sql server 2005 and 2008
wat is stored procedures in sql server?how to use?