Python imports the SQL Server database into the MongoDB database

Source: Internet
Author: User
Tags mongoclient
Import pymssql
From Pymongo import mongoclient
conn = Pymssql.connect (' IP ', ' username ', ' password ', ' database ')
cursor = conn.cursor (as_dict = True)
Cursor.execute ("Select Top V_alerts. Source,v_alerts. Filepath,v_alerts. Alertdatetime,v_alerts. Alertenddatetime,alertmsg. ALERT, Sem_computer.computer_name,sem_computer.current_login_user from (V_alerts left join alertmsg on V_alerts. Alert_idx= alertmsg. ALERT_IDX) LEFT join sem_computer on v_alerts.computer_idx = sem_computer.computer_id ")
Client = mongoclient (' localhost ', 27017)
db = client. SEPM
Collection = DB.SEPM
For row in cursor:
Print (ROW)
Collection.insert_one (Row)
For item in Collection.find ():
Print (item)

Python imports the SQL Server database into the MongoDB database

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.