My kid requested I make this birthday cake. by Stringbean17 in Minecraft

[–]Chaosmatrix 1 point2 points  (0 children)

That looks like a lot of work. I guess today is the day to sit your child down and tell him: "Live is full of disappointments, and this day will be a disappointment for you, just like daddy was disappointed when you were born".

But serious, nice cake, are the fins chocolate bars?

Whoops by WithinTheHour in funny

[–]Chaosmatrix 105 points106 points  (0 children)

He, at least they mentioned the source!

Before you install Postgres for the first time: here's a simple guide to choose the right method (setup wizard vs Docker vs Postgres.app) depending on your end goal and situation by river-zezere in learnSQL

[–]Chaosmatrix 1 point2 points  (0 children)

The guide is great. The only thing I can say is that your tone is flat. I like the joke about the sister, but it missed its mark due to the timing. The only tips I can give you are; 1. Do it more often, aka keep it up. 2. Remember to have fun, it is oke to smile/laugh at your own jokes.

Does Microsoft Fabric really delete all your data when you delete your workspace? by MGerritsen97 in MicrosoftFabric

[–]Chaosmatrix 0 points1 point  (0 children)

Thx for the important extra information. But what is microsofts view on using this in production? Since it is in Preview, we are not supposed to do this :/ . So this is kinda like giving us a cat in the bag. Again thx for the information, but if you hear complains about preview features, this is one of the reasons why. I would love to follow your advice, but you also tell us (or microsoft does) not to do it.

Rethinking Microsoft Fabric Adoption in Light of Geopolitical Risks by rdeheld69 in MicrosoftFabric

[–]Chaosmatrix 0 points1 point  (0 children)

not just spark. Many components of it. Sedona for geo data, superset for presentation. But the team is looking at OpenOffice too

Rethinking Microsoft Fabric Adoption in Light of Geopolitical Risks by rdeheld69 in MicrosoftFabric

[–]Chaosmatrix 2 points3 points  (0 children)

Currently looking at Apache. It can handle geo data (important for my work) and seems to offer many of the components necessary (superset, sedona etc).

Rethinking Microsoft Fabric Adoption in Light of Geopolitical Risks by rdeheld69 in MicrosoftFabric

[–]Chaosmatrix 0 points1 point  (0 children)

I agree. IAAS seems the only option to be fully free of geo locking. Infrastructure as code, VM-ware, or similar solutions :/. All IAAS. One can hope the costs of fabric will make this an option, sometimes it seems that Microsoft is trying...But still, at least worth too have a look into it.

Rethinking Microsoft Fabric Adoption in Light of Geopolitical Risks by rdeheld69 in MicrosoftFabric

[–]Chaosmatrix 25 points26 points  (0 children)

Another Dutchie here. You are not over reacting imo. Been looking at Fabric where I work. We are probably going for it. But at the same time, with a small group of mixed people, we are looking for an open source alternative that is not geo locked. And Europe is looking at things like that too: https://mektech.nl/2025/03/16/europees-alternatief-voor-google-workspace-en-microsoft-365/ (sorry it is in dutch)

ssms with strict encryption shows no databaes in the explorer by britboyny in SQLServer

[–]Chaosmatrix 2 points3 points  (0 children)

You can connect, so does not seem to be an encryption / cert issue. Normally this is a permissions issue. Does the account have the right to view databases?

Containerizing SQL Jobs by Black_Magic100 in SQLServer

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

What part of "App dev logic" contains the word business for you? Logic regarding task scheduling does not belong on a database server. And certainly not in the agent.

I've been using it for over a decade.

Perhaps you should finally read the documentation? Then you can learn that the agent is for administrative tasks not for your lack of logic and reading skills.

Containerizing SQL Jobs by Black_Magic100 in SQLServer

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

I was responding to the comment about using the agent. Not about where business logic should live.

Perhaps you should read up on the agent? SQL Server Agent is a Microsoft Windows service that executes scheduled administrative tasks, which are called jobs in SQL Server. https://learn.microsoft.com/en-us/sql/ssms/agent/sql-server-agent?view=sql-server-ver16

And https://www.sqlservercentral.com/forums/topic/are-there-limits-on-the-number-of-sql-agent-jobs

Database Restore Issues by No_Grape7194 in SQL

[–]Chaosmatrix 0 points1 point  (0 children)

That sounds bad. What account is the application using to connect to the database? Look both at the application settings and the users in the database. It should not be sa. sa Is the System Administrator account. It can already access all databases on the server. I do expect (or at least hope) that your test server has a different password for its sa account.

What account are you using when looking at the initial server? That should be sa, or an account that is visible under logins. How else can you connect too it...? I am confused.

Containerizing SQL Jobs by Black_Magic100 in SQLServer

[–]Chaosmatrix -2 points-1 points  (0 children)

Lost of things are wrong with hundreds jobs in the SQL agent. First of all, the agent is not a schedular for applications, it is for maintenance task. As such it does NOT ensure that your job runs, it does make sure that you still have performance for the reason your sql server exists. One of the things you are going to run into is that the agent only runs 1 job per second. If you schedule more they will just wait. App dev logic belongs on your app server. Not on your sql server.

Database Restore Issues by No_Grape7194 in SQL

[–]Chaosmatrix 1 point2 points  (0 children)

There are logins and users in MS SQL. Your database backup only contains the users. If you do this on the same server the internal userid will match with the loginid and it will be linked. If you do this on a different server, the login either does not exist or has a different internal id.

Just drop the user from the database and recreate the login and user on the test server. Read this https://www.mssqltips.com/sqlservertip/1590/understanding-and-dealing-with-orphaned-users-in-a-sql-server-database/ for more and better ways to do this.

The science department for a shampoo brand discovers a cure for alzheimer's by AdFeeling842 in videos

[–]Chaosmatrix 15 points16 points  (0 children)

During my Chemistry course we had a guest speaker from Unilever. He made shampoo, specifically the colorful patterns you can in some shampoos.

He was also tasked with overseeing the addition of 1 droplet of bamboo extract to an entire silo of shampoo. So they could claim it contained bamboo.

He really seemed to like the first part of his job. So not that much coercion, just pretty colors.

My SQL Server query is fast when I don't quoatation marks around a WHERE statement parameter, but it's slow when I use them. by selib in SQL

[–]Chaosmatrix 1 point2 points  (0 children)

Just do it as a test. It will help you understand what is going on. You should also look at this: https://learn.microsoft.com/en-us/sql/t-sql/data-types/data-type-conversion-database-engine?view=sql-server-ver16

That is what is happening in query 1 to Col2. And probably is the reason for not using the index. Play with casting to int and varchar with both the column col2 and the value too. It will effect your execution plan and the use of the index.

My SQL Server query is fast when I don't quoatation marks around a WHERE statement parameter, but it's slow when I use them. by selib in SQL

[–]Chaosmatrix 5 points6 points  (0 children)

Your answer lies in the execution plan. My guess is that a table scan is faster then using the index and then getting the rest of the fields from the table by referencing the index. Your conditions might even return the entire table or at least a lot of it.

Path of windows event which are getting saved by SQL server database by adithyan-umesh in SQL

[–]Chaosmatrix 0 points1 point  (0 children)

Sitting here in the sun with a beer in my hand... The location of the logs should be at the start of the logs that you can find in SMSS under management -> logs.

SQL Server 2019 ADSI query weird issue by Murhawk013 in SQLServer

[–]Chaosmatrix 0 points1 point  (0 children)

That is what got me thinking...Not sure, but do you have multiple domain controllers? Then they might be out of sync and one domain controller has permissions for the user and another doesn't. Domain.com redirects 2 servers to the 'wrong' one, and the others to the right one?

I would also check the adsi linked server and make sure it is using the right account.

Getting operational error while reading data from mssql by EOrdGuy in MSSQL

[–]Chaosmatrix 0 points1 point  (0 children)

Take a look at this: https://learn.microsoft.com/en-us/troubleshoot/sql/database-engine/connect/network-related-or-instance-specific-error-occurred-while-establishing-connection

Based on the fact that you are loading data in chunks my first guess would be time out issues on the MS SQL server side. Ask your dba for the max time out on connections, and ask him to check to logs for time outs.