-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Open
Labels
EnhancementIO SQLto_sql, read_sql, read_sql_queryto_sql, read_sql, read_sql_queryNeeds TriageIssue that has not been reviewed by a pandas team memberIssue that has not been reviewed by a pandas team member
Description
Feature Type
-
Adding new functionality to pandas
-
Changing existing functionality in pandas
-
Removing existing functionality in pandas
Problem Description
It would be great if we able use hints with to_sql. Especially /APPEND PARALLEL/ hints greatly improves insert time in Oracle.
Feature Description
with db().connect() as connection:
df.to_sql('TEST_TABLE', connection, hints={'ORACLE':['APPEND', 'PARALLEL']}
Alternative Solutions
with db().connect() as connection:
df.to_sql('TEST_TABLE', connection, hints={'ORACLE':['APPEND', 'PARALLEL']}
Additional Context
No response
Metadata
Metadata
Assignees
Labels
EnhancementIO SQLto_sql, read_sql, read_sql_queryto_sql, read_sql, read_sql_queryNeeds TriageIssue that has not been reviewed by a pandas team memberIssue that has not been reviewed by a pandas team member