Viewing 15 posts - 436 through 450 (of 2,857 total)
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
Might not hurt to ask about the new security policy and let them know that you are having issues complying to the new security policy due to how SQL Server...
October 31, 2023 at 10:17 pm
Another thing to check is the logs. Look at the security logs on the server XXX. Chances are something will be in the log like "access denied".
Also, with it working...
October 31, 2023 at 5:48 pm
One approach I can think of to this is to have the end users insert their job request into a table. Then you have a SQL job that runs every...
October 31, 2023 at 5:41 pm
As far as I know, you can't have it export from SSRS INTO an existing Excel file. If you can, I'd be curious to know how that was done and...
October 27, 2023 at 9:57 pm
@Grant Fritchey - pretty sure it is a cross database query (use db2, select from db1), so it should be using the same set of data and data structure, but...
October 27, 2023 at 4:11 pm
While I agree with Jeff in the sense that "if the system is designed in one way, why change it to work a different way", I think I would not...
October 27, 2023 at 2:49 pm
Viewing 15 posts - 436 through 450 (of 2,857 total)