Intelligent ports based on Internet of Things

https://www.researchgate.net/profile/Xisong-Dong/publication/261343481_Intelligent_ports_based_on_Internet_of_Things/links/555e7a4e08ae8c0cab2c736e/Intelligent-ports-based-on-Internet-of-Things.pdf https://sinay.ai/en/what-is-artificial-intelligence-in-smart-port-operations/ https://f.hubspotusercontent10.net/hubfs/4004065/bonus_content/Artificial-Intelligence-in-Shipping-1.pdf?__hstc=&__hssc=&hsCtaTracking=81245913-475a-4217-9465-de2cc8f84fe8%7Cfa2205a2-4947-418d-ba2d-379515501a41

Python MySQL

https://www.w3schools.com/python/python_mysql_getstarted.asp Download and install “MySQL Connector”: C:\Users\Your Name\AppData\Local\Programs\Python\Python36-32\Scripts>python -m pip install mysql-connector-python

Size all tables in volume

DECLARE @name VARCHAR(128) DECLARE @myList TABLE ([row] int, [id] int,[Name] VARCHAR(128)) ; DECLARE @myResult TABLE ([row] int, [Name] VARCHAR(128), [Value] VARCHAR(128)) ; INSERT INTO @myList ([row], [id], [name]) SELECT row_number() OVER(ORDER BY o.name), o.id, o.name FROM dbo.sysobjects o join sys.all_objects syso on o.id = syso.object_id where o.name like ‘f_uks_%’ and type_desc = ‘USER_TABLE’ DECLARE @total … Read more