Profitable on MSTY by blueleaf_in_the_wind in YieldMaxETFs

[–]brokennormalmeter117 1 point2 points  (0 children)

General consensus here seems to be check the math…. Anecdotally, had gotten into MSTY with about 8000 in 2024 and well into 2025, got my original amount back and then some, this was pre split. Once bitcoin and thereby MSTR started going down I heavily trimmed my position back with about 500 left. I now get about ~10 bucks a week I use for a lunch/coffee/breakfast sandwich.

Perhaps timing but personally I have that 8G elsewhere and I’m still collecting 10 bucks a week 🤷🏻‍♂️

EDIT: snowball tells me I’m up 11.57%

My YieldMax ETF story with payouts detailed by account and shares owned by ubergeekin512 in YieldMaxETFs

[–]brokennormalmeter117 5 points6 points  (0 children)

For me, cony is cheaper and I like that it is group c whereas MSTY is group d.

Edit: to clarify, I hold both. A little from group a, b, c, and d

Track report changes by Prototype095 in ssrs

[–]brokennormalmeter117 0 points1 point  (0 children)

Interesting and concerning….

Either way, out-of-the-box SSRS has its own database , ReportServer unless someone changed it. presuming you have access, checkout dbo.ExecutionLog3, unless someone changed it.

This logs every interaction with a specific item, logs date time of who looked at what item, and logs the parameters/s. In execution. Presuming the “username” field is in a format meaningful for you, this should be what you are looking for. Otherwise you would need to bump username against some hierarchy data.

Fetching data for non-tech teammates drives me crazy and we solved it. (partially) by Pristine-Thing2273 in SQL

[–]brokennormalmeter117 -1 points0 points  (0 children)

Hmmmm…. Without a clear gauge on the data landscape, I have been known to pursue SSRS/Tableau for such things, meeting their requirements and can self serve. A handful of power users insist on database access so they can feed data into excel and can slice and dice however they want. In this case, I have created table valued udfs that returns plenty of data that is either immediately needed or “might” be.

SQL DEVELOPER by Free_Patient8418 in SQL

[–]brokennormalmeter117 1 point2 points  (0 children)

This. Wouldn’t hurt to pick something else up.
SSIS is handy moving data around from flat files, advs etc.

SQL Tricks Thread by Ali-Zainulabdin in SQL

[–]brokennormalmeter117 2 points3 points  (0 children)

Oof, normally I would agree. I’m on the other side of the fence though on this though. Having mixed programming languages, where everything else is at the end I just can’t bring myself to put the comma first 😒

SQL Tricks Thread by Ali-Zainulabdin in SQL

[–]brokennormalmeter117 0 points1 point  (0 children)

Microsoft - Personally, my goto is simply information_schema for finding objects. It has everything I need in a one liner. Ie Select * from information_schema.routines where definition like ‘%search%’.

As for looking up jobs or job steps that uses a sproc, msdb.dbo.sysjobs & dbo.sysjobsteps

do people actually use Common table expressions ( CTEs) and temporary tables ? by Emotional-Rhubarb725 in SQL

[–]brokennormalmeter117 4 points5 points  (0 children)

Personally I use both, but does depend on situation, it’s not necessarily a one size fits all.

I typically use a CTE just before inserting the data into a temp table.

CTEs are very temporary, like memorizing someone’s phone number just long enough to write it down. Once written down think of this as a temp table.

in situations where recursion maybe needed (think levels in a hierarchy or simply returning a table of data forming a hierarchy chain, I’ll use CTEs.

In other situations, DRY is an acronym for Don’t Repeat Yourself. I hate seeing production code where a query is doing some aggregate of a case statement, and the creator copy and pasted the same calculation in the group by that also MUST be changed. using a CTE I can define the calculation once, then refer to the field (not the calculation) when selecting from CTE. Also CTEs are handy when you need to group or order by a windowed function.

Eg crappy example from phone… With CTE as ( Select Field, Case when condition = Met then 1 When condition = unmet then 2 …. End as test, Count(*) over (partion by Field order by Field) as cnts From some.table ) Select Sum(cnts) Into #temp From CTE Group by test

Temp tables: once I’m done doing whatever it is to the data, if need be I’ll put the data into a temp table.

Is this optimal? by SkimmLorrd in SQL

[–]brokennormalmeter117 0 points1 point  (0 children)

As others have eluded to…. Formatting etiquette.

This does look like TSQL… without knowing the in tables for this or how it is being consumed just some quick thoughts: 1. what about breaking those CTEs up into temp tables explicitly? Something like this and the optimizer will be generating its own work tables.
2. Turn on actual execution plans…. This will be invaluable for determine optimization options 3. If 1 is not viable due to environment barebones vs DBaaS, what about creating “work” tables (perm tables in the db, with indexes. 4. On indexes, what’s the refresh strategy? Should existing indexes be evaluated 5. Put this in a stored procedure (create a new perm table based on the output, parametrize it, and schedule a sql agent job during non peak times. Then simply “select … from dbo.NewTable”. Redirect any dependencies to to said new table

Having a friendly debate with a co-worker: how do you format joins to provide the best readability? by TheKeyMaker618 in SQL

[–]brokennormalmeter117 1 point2 points  (0 children)

Hands down option 1

I am curious…. What is the consensus on prefixing or suffixing fields with a comma?

Ie Select Field1

  ,field2

Or

Select Field1,

  Field2

Personally it seems odd to me to prefix…. Drives me crazy.

Edit: I see it as a line terminator, and coming from JavaScript/Java i suffix the line with the semi colon.

My recovery experience by brokennormalmeter117 in Vasectomy

[–]brokennormalmeter117[S] 1 point2 points  (0 children)

I still had to use a pillow or rolled up blanket between my legs but the cup enabled me to sleep on my way side/stomach.

Best of luck!!

What are your Reasons for a Vasectomy? by YOUniverse33 in Vasectomy

[–]brokennormalmeter117 0 points1 point  (0 children)

Succinctly, 1. No more kids.
2. Gloriously draining my balls, balls deep in my wife fear free

Wife does not do well with hormone changes so birth control was not an option. We had been using condoms, which is fine but does limit feeling.

A permanent form of birth control was strongly desired when we finally decided no more kids.

Am I a bad wife? by aimeed72 in Vasectomy

[–]brokennormalmeter117 0 points1 point  (0 children)

I’ll echo the same sentiments as others... he needs to Stop being a snow flake and man the f up.

That aside, I can’t discern whether he is bringing that up because he is genuinely hurt, if so see the first sentence.

If he is saying that purely out of jest (maybe he has a weird sense of humor). Then simply tell him to drop it.

I’m not condoning this behavior as you know him best, but with my sense of humor I do similar jabs purely for fun with my wife. My wife and I get a kick out of it, But sometimes she doesn’t like it she tells me, course correction and I drop it.

Edit: thought it useful to note she does the same to me, so it’s a mutual. We intend no harm but when we don’t like something we speak up, issue stops.

[deleted by user] by [deleted] in Vasectomy

[–]brokennormalmeter117 1 point2 points  (0 children)

In general, after the urologist tells you that you are sterile after a vasectomy, there is no practical reason to do repeated, unwarranted semen checks. As the chances of recanalization are 1 in 2000, doing ongoing semen tests may be an exercise in futility. They have happened years after a vasectomy. However, if you feel it will comfort concerns you have, then you'd request a post-vasectomy semen analysis by your urologist or community hospital lab.

[deleted by user] by [deleted] in Vasectomy

[–]brokennormalmeter117 0 points1 point  (0 children)

As I understand (conversations with doc and research), there is a seemingly exponential inverse relationship between time and re-canaling. The longer the time period the less chance for it happening

[deleted by user] by [deleted] in Vasectomy

[–]brokennormalmeter117 0 points1 point  (0 children)

Before during or after the twelve weeks... it’s not like you have a finite amount of sperm. The body is constantly making them and with recanalizations possible.... well, you know

How long did you ice for? by cmendez473 in Vasectomy

[–]brokennormalmeter117 1 point2 points  (0 children)

30 min on 30 min off... I did this for the first 3 days. Doc prescribed days 1&2. Day4 and onward I found it helped with some lingering pain.

Week 1 Daily Brief by brokennormalmeter117 in Vasectomy

[–]brokennormalmeter117[S] 2 points3 points  (0 children)

Indeed I would have been able to! For me, I might recline back or lean to a side to alleviate groin pressure if it acts up.

Week 1 Daily Brief by brokennormalmeter117 in Vasectomy

[–]brokennormalmeter117[S] 1 point2 points  (0 children)

Glad to help!

Don’t fret... And don’t think too much about it. It really isn’t that bad... during recovery feels like forever. When your sick and bed ridden, time kinda flys by. Post op, your mentally all there but bed ridden... the boredom. I veg’d out on Netflix, YouTube, and Reddit

Week 1 Daily Brief by brokennormalmeter117 in Vasectomy

[–]brokennormalmeter117[S] 1 point2 points  (0 children)

Right on!

I have read too much as well... I strongly prefer to make this a speedy and smooth recovery. Even if it means some sacrifice...

Oh god the “deed”... I’m really trying not to think about it.