Explain how to get information from Excel over to the database
Anonymous
You're right, to get data out of MS Excel, especially if you're using something newer, e.g. Azure SQL database, you have to write the data from Excel to a CSV delimited (or whatever delimiter you prefer, e.g. tab delimited txt) flat file, then port the flat file to SQL using BULK insert. If you need to do any preprocessing or cleaning of data, use Python (I use SAS with PROC SQL) before porting to SQL Server. You can also port directly from the flat file to SQL Server and SQL Database with ODBC for Windows 7 or OLE DB for Windows 10 (OLE DB is more versatile).
Check out your Company Bowl for anonymous work chats.