Teradata Package for Python Function Reference on VantageCloud Lake - delete - Teradata Package for Python - Look here for syntax, methods and examples for the functions included in the Teradata Package for Python.

Teradata® Package for Python Function Reference on VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Package for Python
Release Number
20.00.00.04
Published
March 2025
ft:locale
en-US
ft:lastEdition
2025-04-11
dita:id
TeradataPython_FxRef_Lake_2000
Product Category
Teradata Vantage
teradataml.store.feature_store.feature_store.FeatureStore.delete = delete(self)
DESCRIPTION:
    Removes the FeatureStore and its components from repository.
    Notes:
         * The function removes all the associated database objects along with data.
           Be cautious while using this function.
         * The function tries to remove the underlying Database also once
           all the Feature Store objects are removed.
         * The user must have permission on the database used by this Feature Store
            * to drop triggers.
            * to drop the tables.
            * to drop the Database.
         * If the user lacks any of the mentioned permissions, Teradata recommends
           to not use this function.
 
PARAMETERS:
    None
 
RETURNS:
    bool.
 
RAISES:
    None
 
EXAMPLES:
    # Setup FeatureStore for repo 'vfs_v1'.
    >>> from teradataml import FeatureStore
    >>> fs = FeatureStore("vfs_v1")
    >>> fs.setup()
    True
    >>> # Delete FeatureStore.
    >>> fs.delete()
    True
    >>>