-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
is it possible to specify Tablespace on Entity Framework core OnModelCreating #188
Comments
No, there isn't. What are you trying to accomplish by specifying a tablespace? |
When we apply the migration to create the database table and indexes it generates: It uses the default tablespace for the schema The work around is not to use migrations and create the tables and index with SQL , the traditional way. it's a shame that because of this feature we can't use migrations |
@omora Thanks for brining this to the Oracle EF Core team's attention. I filed an enhancement request (33219678) to have the dev team take a look. We will prioritize ERs based on customer interest. |
any updates on that matter ? |
@tisonv There has been limited progress. Compared to other feature requests, the community has not upvoted this feature. As of today, there has only been one upvote. |
Thenk you @alexkeh Not sure 1 more vote would help. Historically we split table datas and indexes on separate tablespaces. As a senior principal product manager at Oracle, would you say it's now useless to separate the datas and indexes ? |
If your organization needs it, I recommend you vote for it. Other features were upvoted, and they are being prioritized. Separating data and indexes usually makes little difference to performance. The bigger benefit can come from the DB administration perspective. Some DBAs find it easier to monitor growth and other management tasks by keeping them separate. Of course, this comes down to personal preference. |
For tables and indexes?
Thanks
The text was updated successfully, but these errors were encountered: