What is the SQL query for creating a new database in Oracle 10G Express? [closed] - sql

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
What is the SQL query for creating a new database in Oracle 10G Express?

CREATE DATABASE database_name options
List of other commands is here
I googled that and it took 2 mins, and I know nothing about DBs!!!!!

Related

How to find between tenth with twentieth data with MagicalRecord [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
If my table in database which has 100 data. I want to find between tenth with twentieth. I want to know how to find them with MagicalRecord, or sqlite statements.
Forget Magical Record and use native Core Data.
fetchRequest.fetchOffset = 10;
fetchRequest.fetchLimit = 10;

How can I get a dummy database where I can use some indexing? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can I get a dummy database where I can do some indexing on tables?
What dummy database is the best for my study?
have u tried http://sqlfiddle.com/? It is simple to use and supports mySQL and SQL Server

SQL Fiddle moved to SO Data? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
This question is totally unacceptable and will be closed but...
Has SQL Fiddle been amalgameted into Stack Exchange? For example in HERE
Also - THIS is crazy - Am I correct in saying this is sql that is querying SO itself?
(... can't wait to play.)
First, such questions should rather be in meta.
Second, the data explorer has been around for some time now; it's not about executing arbitrary SQL code but for queries against the SO database.
See meta for more questions around the data explorer: https://meta.stackexchange.com/questions/tagged/data-explorer

What is User define function and how to execute that? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
What is user define function in sql server 2005.How Can I see them from design point of view.
I wanted to create and execute the function.Can anybody explain me.I have not done it before.
User-Defined Functions from MSDN Books Online

why text or ntext is not recomended for use in sql server [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
please discuss the reason why why text or ntext is not recomended for use in sql server. thanks
They are deprecated, won't work in future versions and working with them is a pain compared to the replacement datatypes (varchar(max) and nvarchar(max)) as most string functions don't work with them.