I found myself in the position in the title of this post. To skip to the root cause, I had configured a VPC endpoint and configured the bucket policy to allow access from only the associated VPC. That makes sense.…
Category: Cloud
Loading snowflake from Oracle
Single class to illustrate loading data… import java.sql.*; import java.util.*; public class loadSnowflake { public static void main(String[] args) throws Exception { Class.forName(“oracle.jdbc.driver.OracleDriver”); Class.forName(“com.snowflake.client.jdbc.SnowflakeDriver”); Properties properties = new Properties(); properties.put(“user”, “showard”); properties.put(“password”, “*****”); properties.put(“account”, “rcaccount#”); properties.put(“schema”, “PUBLIC”); Connection connection =…
Android – Log network SSID’s and DBM
Technically, this could be used to trilaterate over time and heatmap where associates spend their time, as well as what activity occurs where. To do this, we would need the coordinates of all AP’s in the given store. The endpoint…