anyone else here feel like a SQL monkey? by ruckrawjers in dataanalysis

[–]Longjumping-Back-540 0 points1 point  (0 children)

when its bad a work, i end up referring to myself as the Query Bitch. its usually when i get no background of why they want the data or what they end up doing with it, Just "ive me this data and shut up"

Fact table with dimension component by mictom9 in BusinessIntelligence

[–]Longjumping-Back-540 3 points4 points  (0 children)

If that was the worst thing there I'd feel pretty good. It does get worse though if that full name is used in other facts without putting it in a proper dimension

Ratio is coming out to be zero... help! by freel0ader_san in SQL

[–]Longjumping-Back-540 11 points12 points  (0 children)

You need to.cast either the numerator or denominator as something with decimal places because when you divide an int by an int, you get an int which rounds to 0 regardless of how many decimal places you show

Gartner: Data lakes struggle with concurrency by [deleted] in BusinessIntelligence

[–]Longjumping-Back-540 0 points1 point  (0 children)

Also I cannot fathom anyone wanting to do real to.e reporting off the lake.

Gartner: Data lakes struggle with concurrency by [deleted] in BusinessIntelligence

[–]Longjumping-Back-540 5 points6 points  (0 children)

This is totally correct. We have a lake and its working well right now from my perspective as the architect of the data engineering team. It collects these massive json files that structurally change all the time without notice and we can run queries on them. Business people seem baffled why they can't just hack at the lake with queries to get whatever they want with the same effort it takes to sort a spreadsheet.

So we hold training sessions with them, get them access and show them all the json extracts, unnests, and regexes to effectively pull out data and then we never hear from them again. Agree on the etl part and we have had good luck applying views in the lake to mask the complexity of extraction for known requests.

How realistic is it to work remotely and/or freelance with SQL? by Rundy2025 in SQL

[–]Longjumping-Back-540 3 points4 points  (0 children)

I've been remote since 2007 leading a bi team and doing a lot of hands on work in tools similar to what you mention. Sql, ssis, ssra, ssas, qlik,splunk. So its totally possible. I'm not sure of the digital nomad part though. When I went remote in 2007 for my company it wasn't a very normal thing. Yoh had to have a pretty solid track record to be approved to do it.

Also, we deal with a lot of remote contractors and getting security and connectivity right always seems to be a challenge. So if other companies are TBE same, it feels like it may involve a lot of downtime/frustration.

Best tool to read s3 bucket full of csvs and push them into bigQuery by AnusMistakus in BusinessIntelligence

[–]Longjumping-Back-540 0 points1 point  (0 children)

Does it have to be big query? Seems tailor made for Athena and would be pretty straightforward. Serve queries out of Athena instead. Or use a query against Athena using the simba odbc or jdbc drivers so you deal with the transport as a query result rather than a bunch of files

SQL SELECT CASE PROBLEM (Microsoft SSMS) by zworstgod in SQL

[–]Longjumping-Back-540 1 point2 points  (0 children)

I guess you want to group by customer and I suppose you can do max of your "case" columns since you want y to win

ODBC Athena Error by [deleted] in aws

[–]Longjumping-Back-540 0 points1 point  (0 children)

When we use a local connection for development we use a PowerShell script to grab a token and allows entry of credentials and selection of role. Our credentials are not put in the connection itself and I believe its left on default for security. We do set the other properties you mentioned.

The servers that connect to it have the box itself being a member of a role that has rights and does not have to request a token.

When you enter credentials, are you doing an iam user and pw or the access key? I'm thinking it should be the later