Viewing 15 posts - 436 through 450 (of 2,863 total)
To add to what Grant said, I would also like to know why you think that is a "common database maintenance task"? My opinion, database maintenance tasks include things that...
November 9, 2023 at 7:34 pm
I've not set something like that up before, but I'd try taking different things out of the equation. Can you query it without using powerBI? or is it slow if...
November 9, 2023 at 7:20 pm
My first step would be to check the MS documentation - https://learn.microsoft.com/en-us/sql/relational-databases/replication/troubleshoot-tran-repl-errors?view=sql-server-ver16
But in your specific use case, I think you are stuck between a rock and a hard place. If...
November 7, 2023 at 2:26 pm
To play Devil's advocate, I would say it really depends. If you are currently employed, what does your employer use? I know at my workplace, we are not using SSAS...
November 6, 2023 at 6:06 pm
We have a policy at our company that the C# code must call stored procedures to get or manipulate any data. It gives us better tuning opportunities and allows us...
November 6, 2023 at 6:00 pm
First question I'd ask is "what problem are you trying to solve by putting the Excel data into SQL Server?". How will putting the data into SQL Server help you?
But...
November 3, 2023 at 9:13 pm
DBA's should be involved in database design (my opinion)... otherwise what is stopping a developer from making tables that are not normalized or using bad datatypes (TEXT for example)... Makes...
November 3, 2023 at 8:58 pm
Every time I have seen "Attempting to use an NT account name with SQL Server Auth" it means that my SQL instance is set up for Windows Authentication (instead of...
November 3, 2023 at 3:07 pm
To me that is a good argument to move it from MySQL to MSSQL. That is one of the use cases where I'd do the migration.
As for the database schema,...
November 3, 2023 at 3:02 pm
This is actually pretty easy to do and Microsoft even has a writeup on it:
The steps are:
In the tablix data region row group area, right-click a cell in the column...
November 3, 2023 at 2:43 pm
@ScottPletcher I do agree that triggers and CDC are not necessarily performance killers, but they do impact performance. I haven't set up CDC, so I am not sure what the...
November 3, 2023 at 2:32 pm
If memory serves, CDC is not trivial to set up and it can be a performance suck as well.
My opinion is still that targeting the stored procedure or application code...
November 2, 2023 at 7:42 pm
To add to what Ant-Green suggests (dumping to flat files), that also would allow you to build a proper schema for it. I've seen some of the automated tools for...
November 2, 2023 at 5:54 pm
My opinion, the easiest way to set this up (as a SHORT TERM thing) would be an after update trigger then. I say short term as triggers are "hidden problems"...
November 2, 2023 at 5:44 pm
Viewing 15 posts - 436 through 450 (of 2,863 total)