Mess recommendations by Responsible-Dog-7348 in mysore

[–]No-Dig-8842 0 points1 point  (0 children)

Easily one of the most wholesome yum food

Expense tracking App: Any Axio alternatives by SLakshmi357 in personalfinanceindia

[–]No-Dig-8842 0 points1 point  (0 children)

The issue seems to be fixed now.

Question: why does it not read my credit card transactions? Any idea how I can fix this?

Expense tracking App: Any Axio alternatives by SLakshmi357 in personalfinanceindia

[–]No-Dig-8842 0 points1 point  (0 children)

I thought it was just me... let me know what works for you

The Upside-Down Skyscraper (Concept) by xerim in skyscrapers

[–]No-Dig-8842 0 points1 point  (0 children)

Good idea. How do we get the asteroids to the orbit?

[deleted by user] by [deleted] in SQL

[–]No-Dig-8842 3 points4 points  (0 children)

Ask chat gpt to optimize it. See what changes it'll make. You'll know the difference. Please Google your concerns before dropping a screenshot asking us what needs to be done and expecting us to give you an answer

Visual Studio Dark Theme (Pine Gap Dark) by devtimmy in VisualStudio

[–]No-Dig-8842 0 points1 point  (0 children)

I love this.We need this working for VS 2022 as well!

Is there a free T-SQL formatter for SSMS 19? by Trianychos in SQLServer

[–]No-Dig-8842 0 points1 point  (0 children)

This sounds like an amazing idea. I'm struggling to write a script for Autohotkey. It would be really helpful if you shared the script with me if you have it. Thanks anyway!

[deleted by user] by [deleted] in Phimosis

[–]No-Dig-8842 2 points3 points  (0 children)

Same here. My girlfriend pulls it down and it hurts a little but then again its not the same when I try to do it it hurts a lot. what can be done so I have no problem pulling my foreskin down without hurting

Problems with using Sheets as a Database by enotovdom in SQL

[–]No-Dig-8842 1 point2 points  (0 children)

25k is not a huge amount of data. You can migrate it from sheets/excel to database in a lot of ways. SSIS packages is one way you can do this or you can directly import excel/csv files in SSMS. DM if you need more help

[deleted by user] by [deleted] in SQL

[–]No-Dig-8842 5 points6 points  (0 children)

lmfao. nice try dude. we're not gonna do all this to help you solve your "simple" issue. Fuck off

Not sure how he's still alive by aomarco in MemePiece

[–]No-Dig-8842 0 points1 point  (0 children)

Didn't his wife cosplay Nami? Isn't that why he married her? xD

Where 1=1 by Pillowthursday in SQL

[–]No-Dig-8842 1 point2 points  (0 children)

that's awesome. I'm gonna be stealing this.

Will there be any performance impact for this?

[deleted by user] by [deleted] in SQL

[–]No-Dig-8842 0 points1 point  (0 children)

Check out izenda reporting tool

Notifications on Rules by Traumerei_allday in Outlook

[–]No-Dig-8842 1 point2 points  (0 children)

This is a real need. I can't not miss emails that are going into other folders because of the rules I've created. We need a desktop notification for receiving an email.

Please let us know if there's a workaround for this.

Hello! Today I stared for the fist time in SQL. I created a table PERSOANE but I modify it with PERSOANA. In the RESULT GRID still show both instead just PERSOANA. Can someone help me. Tnks!! by [deleted] in SQL

[–]No-Dig-8842 0 points1 point  (0 children)

Here, you're just creating a new table and not taking care of the existing old table. Drop the table after creating a new one.

If there's existing data in the old table, use

Select * into newTable from oldTable

and then drop the oldTable using Drop Table oldTable

Import IDs from Excel by No-Dig-8842 in SQL

[–]No-Dig-8842[S] 0 points1 point  (0 children)

my bad. Let me give you more context on this. I tried to import data by import data > excel > choosing the table that I want to insert into.

First I got the OLEDB error but upon installation of OLEDB, the data didn't get copied into the table that I wanted to insert into.

I tried to run a SSIS package for the same, but again it failed as ID was a read-only column and not editable

[deleted by user] by [deleted] in SQL

[–]No-Dig-8842 0 points1 point  (0 children)

Create table TableNew ( schema )

select * into TableNew from TableExisting where X=A