filmov
tv
Auto Export Data into Excel from SQL using Python Pyodbc | Python SQL Automation |Task Scheduler #16
![preview_player](https://i.ytimg.com/vi/8BiQx_xEIhw/sddefault.jpg)
Показать описание
In this video you will learn or explore something new related to Python and SQL Server Automation.
Auto Export Data into Excel from SQL using Python Pyodbc | Python SQL Automation | Task Scheduler
First of all we will establish the connection between Python and SQL Server using pyodbc (To create the SQL connection is very easy as compare to other programming language). After that we will read the data from SQL and store in Pandas DataFrame and very interest part is we will display the notification status on user's screen and that notification you can customize based on your need.
And at the last, we will schedule the script using Task Scheduler to run on the specific date and time. So Let's go!!!
Python SQL Server Script:
------------------------------------------------------------------------------------------------------------------
import pyodbc
import pandas as pd
import os
from datetime import datetime
from plyer import notification
# create SQL connection
host = 'DESKTOP-NAKP5E5',
database = "Test",
trusted_connection = 'yes')
# SQL Command to read the data
sqlQuery = "select * from dbo.SalesOrder where Region = 'South'"
# Getting the data from sql into pandas dataframe
# Export the data on the Desktop
+ ".csv", index = False)
# Display Notifiction to User
message=f"Sales data has been successfully saved into Excel.\
timeout = 10)
-------------------------------------------------------------------------------------------------------------------
Last Video:
Auto Export Data into Excel from SQL using Python Pyodbc | Python SQL Automation | Task Scheduler
First of all we will establish the connection between Python and SQL Server using pyodbc (To create the SQL connection is very easy as compare to other programming language). After that we will read the data from SQL and store in Pandas DataFrame and very interest part is we will display the notification status on user's screen and that notification you can customize based on your need.
And at the last, we will schedule the script using Task Scheduler to run on the specific date and time. So Let's go!!!
Python SQL Server Script:
------------------------------------------------------------------------------------------------------------------
import pyodbc
import pandas as pd
import os
from datetime import datetime
from plyer import notification
# create SQL connection
host = 'DESKTOP-NAKP5E5',
database = "Test",
trusted_connection = 'yes')
# SQL Command to read the data
sqlQuery = "select * from dbo.SalesOrder where Region = 'South'"
# Getting the data from sql into pandas dataframe
# Export the data on the Desktop
+ ".csv", index = False)
# Display Notifiction to User
message=f"Sales data has been successfully saved into Excel.\
timeout = 10)
-------------------------------------------------------------------------------------------------------------------
Last Video:
Комментарии