Viewing 15 posts - 391 through 405 (of 2,863 total)
I think it really depends on the problem you are trying to solve. I am guessing you read the comments to the SSC post here:
https://www.sqlservercentral.com/forums/topic/script-all-logins-users-and-roles
If you are looking to re-create...
November 29, 2023 at 7:53 pm
My troubleshooting steps are always the same - review the logs, reproduce the problem on a test system, and go from there. From what I found on google, it sounds...
November 29, 2023 at 7:31 pm
I have not tested this, but any chance you have implicit transactions turned on in your instance?
If not, I'd open up a support case with Microsoft as nobody on this...
November 29, 2023 at 7:23 pm
My opinion - there is a TON to learn. Heck, I know very little about SQL. Every time I think I know something, someone posts something that contradicts what I...
November 29, 2023 at 2:25 pm
That is a lot of "insufficient memory" errors... any chance that the box hosting SQL Server is running out of memory?
Failing that, any chance that your service broker has a...
November 28, 2023 at 10:06 pm
Only 50 MB is being used in the 10 minute timeframe. Looking at the longer time frame we can see more is used, jumping up to nearly 600 MB at...
November 28, 2023 at 9:20 pm
tempdb is used for all temporary storage required by a query. Temp tables and table variables are the big things that fill it up, but other things can be stored...
November 28, 2023 at 3:49 pm
To be completely honest with you, I've never tried to open an RDL in SSMS and didn't even know you could... I don't see the point? Is there a reason...
November 28, 2023 at 2:35 pm
I agree with Ant-Green - test it and see. BUT that being said, the way the bat file is written it would be running command 1 then when that sends...
November 28, 2023 at 2:30 pm
Also, forgive my ignorance, but what do you mean by the statement
-- In T-SQL, you cannot directly change the owner of a view like in PostgreSQL.
-- You would need to...
November 27, 2023 at 9:14 pm
So looking at your expected results, your query isn't doing what you want... but I imagine you already knew that, right? You did try running it against your dataset, right?...
November 27, 2023 at 9:04 pm
Just to confirm, the logs you reviewed are: C:\Program Files\Microsoft SQL Server\MSRS12.SQL2014\Reporting Services\LogFiles (for SQL Server 2014). If memory serves, this can be configured during install time, so that folder...
November 27, 2023 at 8:35 pm
Since you are not deleting anything out of database2, you could get a performance boost by pulling that table into a table variable/temp table and remove the cross database lookups....
November 27, 2023 at 8:33 pm
One thing I would point out is adding indexes is something you should do with caution. I know Bedeencion40 said that adding missing indexes was good, but it isn't always...
November 27, 2023 at 5:08 pm
Even with the sample data, I don't know what your expected output is. Tell me what you expect the output to look like and then I can try to help....
November 25, 2023 at 9:20 pm
Viewing 15 posts - 391 through 405 (of 2,863 total)