Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Need help using a View to create a Table

Author  Topic 

osirisa
Constraint Violating Yak Guru

289 Posts

Posted - 2010-01-15 : 11:39:13
Hi Group:

I am trying to use a view and change it into a Table. Any idea of how can I do this easy. I am using SQL Express so I may don't have all the capabilities of the full version.

Thanks for the help....

webfred
Master Smack Fu Yak Hacker

8781 Posts

Posted - 2010-01-15 : 11:44:33
Can I ask why do you want to do this?
Normally for example a view is written to show data coming from a join of many tables.
So why you want to do that when the data is already there in other tables?


No, you're never too old to Yak'n'Roll if you're too young to die.
Go to Top of Page

osirisa
Constraint Violating Yak Guru

289 Posts

Posted - 2010-01-15 : 12:22:27
Webfred -thank you for your help, we are going to change the approach. Thanks anyway.
Go to Top of Page

X002548
Not Just a Number

15586 Posts

Posted - 2010-01-15 : 12:27:53
<rope>

SELECT * INTO NewTable FROM View

</rope>



Brett

8-)

Hint: Want your questions answered fast? Follow the direction in this link
http://weblogs.sqlteam.com/brettk/archive/2005/05/25/5276.aspx

Add yourself!
http://www.frappr.com/sqlteam



Go to Top of Page

webfred
Master Smack Fu Yak Hacker

8781 Posts

Posted - 2010-01-15 : 12:35:07
quote:
Originally posted by X002548

<rope>

SELECT * INTO NewTable FROM View

</rope>



Brett

8-)

Hint: Want your questions answered fast? Follow the direction in this link
http://weblogs.sqlteam.com/brettk/archive/2005/05/25/5276.aspx

Add yourself!
http://www.frappr.com/sqlteam







LOL


No, you're never too old to Yak'n'Roll if you're too young to die.
Go to Top of Page

Kristen
Test

22859 Posts

Posted - 2010-01-15 : 12:57:25
I've gotta find a use for a <ROPE> tag ... that's priceless !!
Go to Top of Page
   

- Advertisement -