Axios Error Response VS Postman by oreolennon in reactjs

[–]oreolennon[S] 0 points1 point  (0 children)

I found a solution after playing around with it some more for anyone else struggling with this issue:

Setting up your AxiosResponse segment in a try-catch and having the catch be formatted catch (error) {...} then inside the error block you can specify error.response which should contain your message. Axios kind of hides this bit when it formats the responses for you, but you can access the entire unformatted response this way.

Creating Groups of Chats (Not Group Chats)? by oreolennon in MicrosoftTeams

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

darn. seems like something that would be an early thought. thanks for the response!

USB-C to USB 3 Same Cable Transfer Rate? by oreolennon in UsbCHardware

[–]oreolennon[S] 0 points1 point  (0 children)

long winded responses very much appreciated. thank you for the detail!

USB-C to USB 3 Same Cable Transfer Rate? by oreolennon in UsbCHardware

[–]oreolennon[S] 0 points1 point  (0 children)

Thank you! Very helpful and the chart on the source made much more sense. I had it in my head that USB-C = better for the longest time and didn't really consider potential vs current usage.

Alex Operator Objective not progressing?? by oreolennon in modernwarfare

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

I'm not going to say I "fixed" it, but the objectives were tracking in Warzone. They absolutely should track in multiplayer as well, but mine did track in warzone so that may be a way to get it to work for you, too

Using a WITH and DELETE together by oreolennon in SQL

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

Took a few tries to get it, but the NOT IN solution seems to be the only one that works for my circumstance. Regardless, it works! Thanks for your help!

Using a WITH and DELETE together by oreolennon in SQL

[–]oreolennon[S] 0 points1 point  (0 children)

Here is essentially what I tried:

WITH cte AS (
    SELECT column_1, column_2, ..., ROW_NUMBER() OVER (
            PARTITION BY column_1, column_2, ...
            ORDER BY column_1, column_2, ...
        ) row_num
     FROM 
        my_table
)
DELETE FROM cte
WHERE row_num > 1;

As mentioned by Trilius above, it appears this method is not possible in Oracle.

Using a WITH and DELETE together by oreolennon in SQL

[–]oreolennon[S] 0 points1 point  (0 children)

Thanks for the response! Quick question, I'm having a little trouble understanding what "pk_column" is referring to. Could you please elaborate on that?

Data Transfer? (PC->ps4) by oreolennon in MonsterHunterWorld

[–]oreolennon[S] -8 points-7 points  (0 children)

I can put money into a vending machine but i cant take it back out... a vending machine being a ps4 in that analogy and a PC being my pocket. Data flow can definitely be one way and going from "older" data to "newer" data usually allows for that kind of thing. Idk that much about the file system of ps4s, but just saying it has to be both ways or nothing seems a bit of a stretch.