This blog is a depository for things I have found regarding VB.NET and C#.NET development (and other things I may need to remember). This blog is primarily for my own reference, but if the information I found is useful to others, then that is great. If others want to contribute with comments or other information, then that is great too.
Sunday, June 26, 2011
Creating a Tablespace in Oracle with SQL
I never can seem to remember the SQL to create a tablespace in Oracle. I am posting my example that I use to I can easily find it again in the future:
create tablespace MyTableSpaceName logging datafile 'MyTableSpaceFile.dbf' size 32m autoextend on next 32m maxsize unlimited extent management local;
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.