我的雪花实例上有一个数据库SFOPT_TEST
。数据库有两个模式审计
和参数
。
模式AUDITS
使用SQLAlchemydeclarative_base()
-
class AccountUsageLoginHistory(Base):
'''
This model will store the account parameters of the customers instances.
'''
__tablename__ = constants.TABLE_ACCOUNT_USAGE_LOGIN_HISTORY
__table_args__ = {
'schema' : os.environ.get('SCHEMA_NAME_AUDITS')
}
id = Column(Integer, Sequence('id_login_history'), primary_key=True, autoincrement=True)
event_id = Column(Integer, nullable=True)
event_timestamp = Column(TIMESTAMP, nullable=True)
event_type = Column(String(100), nullable=True)
user_name = Column(String(100), nullable=True)
client_ip = Column(String(100), nullable=True)
reported_client_type = Column(String(100), nullable=True)
reported_client_version = Column(String(100), nullable=True)
first_authentication_factor = Column(String(100), nullable=True)
second_authentication_factor = Column(String(100), nullable=True)
is_success = Column(String(100), nullable=True)
error_code = Column(String(200), nullable=True)
error_message = Column(String(100), nullable=True)
related_event_id = Column(Integer, nullable=True)
event = Column(String(200), nullable=True)
instance_id = Column(Integer, nullable=True)
company_id = Column(Integer, nullable=True)
user_id = Column(Integer, nullable=True)
date_run = Column(Date, nullable=True)
def __repr__(self):
#return the class object.
return "<LoginHistory({})>".format(self.id)
我有一个列的dataframe,如下所述,需要插入到上面创建的表中-
Index(['event_id', 'event_timestamp', 'event_type', 'user_name', 'client_ip',
'reported_client_type', 'reported_client_version',
'first_authentication_factor', 'second_authentication_factor',
'is_success', 'error_code', 'error_message', 'related_event_id',
'instance_id', 'user_id', 'event', 'company_id', 'date_run'],
dtype='object')
因此,为了插入数据帧,我使用了to_sql()
方法,如下所示-
数据帧。to_sql(table_name,self.engine,index=False,method=pd_writer,if_exists=“append”)
这会给我一个错误-
Traceback (most recent call last):
File "metadata_collection.py", line 59, in <module>
y = x.collect_process_dump(sql='SELECT * FROM SNOWFLAKE.ACCOUNT_USAGE.LOGIN_HISTORY;', table_name='account_usage_login_history')
File "metadata_collection.py", line 55, in collect_process_dump
load_data = self.load_data.dump_data(table_name=table_name, dataframe=associate_df)
File "/snowflake-backend/snowflake/collect_metadata/load_data.py", line 16, in dump_data
dataframe.to_sql(table_name, self.engine, index=False, method=pd_writer, if_exists="append")
File "/usr/local/lib/python3.7/site-packages/pandas/core/generic.py", line 2663, in to_sql
method=method,
File "/usr/local/lib/python3.7/site-packages/pandas/io/sql.py", line 521, in to_sql
method=method,
File "/usr/local/lib/python3.7/site-packages/pandas/io/sql.py", line 1317, in to_sql
table.insert(chunksize, method=method)
File "/usr/local/lib/python3.7/site-packages/pandas/io/sql.py", line 755, in insert
exec_insert(conn, keys, chunk_iter)
File "/usr/local/lib/python3.7/site-packages/snowflake/connector/pandas_tools.py", line 168, in pd_writer
schema=table.schema)
File "/usr/local/lib/python3.7/site-packages/snowflake/connector/pandas_tools.py", line 135, in write_pandas
copy_results = cursor.execute(copy_into_sql, _is_internal=True).fetchall()
File "/usr/local/lib/python3.7/site-packages/snowflake/connector/cursor.py", line 597, in execute
errvalue)
File "/usr/local/lib/python3.7/site-packages/snowflake/connector/errors.py", line 124, in errorhandler_wrapper
cursor.errorhandler(connection, cursor, error_class, error_value)
File "/usr/local/lib/python3.7/site-packages/snowflake/connector/errors.py", line 89, in default_errorhandler
done_format_msg=error_value.get('done_format_msg'))
snowflake.connector.errors.ProgrammingError: 100072 (22000): 0198d465-0b4e-b74d-0000-d5e5000b524a: NULL result in a non-nullable column
这个错误是因为我的雪花表中有一个字段id
作为主键
,不能为null
。为了自动增加它,我创建了一个序列,如上面的类AccountUsageLoginHistory
中所示。此外,在上面附加的屏幕截图中,id
的默认值是IDENTITY START 1 INCREMENT 1
。所有其他列都为nullable=True,因此问题仅限于id
。
但我仍然无法将数据插入表中。
如果您习惯使用MSSQL或Oracle,这可能会让人感到困惑,但Snowflake不允许您在有not null约束时忽略insert上的列(这是Snowflake强制执行的唯一约束)。但是,由于使用序列添加默认值,因此可以将列设置为可空,插入将成功,它将按预期使用默认值填充ID列。
唯一的警告是,如果用户以这种方式插入表:
INSERT INTO TABLE_ACCOUNT_USAGE_LOGIN_HISTORY(ID, EVENT_ID)
VALUES(NULL, 2);
查询将成功添加ID为空的新行。
事情是这样的 我不知道发生了什么,如果有人能帮忙,我会非常感激的。THX!
我是laravel的新手,当我使用单击函数提交表单时出现了一些问题。ajax jquery controller不会将数据保存到数据库,每次响应时都会使用整个html文件。请帮帮我。 关于标题的一些信息 请求URL:http://akshay.laravel/patient1?fname=asdknkl 状态代码:200 OK 远程地址:[::1]:80 推荐人策略:降级时无推荐人 缓存控制:无缓
但是得到 jspException(jspservletwrapper.java:568)org.apache.jasper.servlet.jspservletwrapper.java:455)org.apache.jasper.server.jspserver.servicejjspfile(jspservlet.java:390)org.apache.jasper.server.jspser
我是mysql和php的初学者。在这个问题上陷入了困境。不知道问题出在哪里。但是如果我直接执行insert查询,它就会被执行,而如果我从用户那里接受它,它就不会被执行(代码中显示了这一点)。可能问题出在我用来检索用户提交的值的$\u POST[]方法上。我已经提交了两个代码,addbooks。php(用户提交值的表单)和add。php(插入数据库)。
所以我想在一个控制器中创建两个存储。当我输入时,我确实返回到索引页面,但我提交的数据不存在。然后我看到了我的本地主机,但是我输入的数据也不在那里。当我输入时,没有错误消息。所以我不知道我的错误在哪里。 这是我的看法 createincome.blade.php 这是我的控制器 财务控制人。php 这是我的路线 web.php