Viewing 15 posts - 1,036 through 1,050 (of 2,905 total)
Screenshot is a little hard to read, but I would guess the problem is that the SQL Server Agent user doesn't exist on the database. Looking at the user, it...
July 9, 2021 at 10:13 pm
They should just need EXECUTE permissions as far as I am aware.
I would double check that you granted permissions on the correct object in the correct database on the correct...
July 9, 2021 at 9:48 pm
I created a script that replicates this behavior but I do not have a good "reason" why this behavior exists, just a theory. Sample script:
DROP TABLE IF...
July 9, 2021 at 9:33 pm
I would try a repair install of VS2019 or look for updates to VS2019.
It sounds like something may be broken with your VS install (just a guess).
July 9, 2021 at 6:57 pm
Did you install the SSDT (or whatever they are calling it in VS 2019)? Chances are you are missing the reporting templates for VS2019. This link has some directions:
https://tomaztsql.wordpress.com/2019/11/03/installing-ssis-ssrs-and-ssas-with-visual-studio-2019/
But the...
July 9, 2021 at 2:54 pm
If you don't want to create the object on the secondary server first (which is the method I would HIGHLY recommend doing as then you can properly define the datatypes...
July 9, 2021 at 2:50 pm
Yes, sorry. My reply was before I realized that this data is already stored inside SQL Server. I wouldn't bother making a new table for it when a view will...
July 8, 2021 at 9:53 pm
For fun, I tried running the query you had pasted and it runs fine on my system.
My guess is you copy-pasted that from another site that does some formatting on...
July 8, 2021 at 9:49 pm
PLEASE DISREGARD THIS POST. OTHERS REPLYING TO THIS ARE DOING A MUCH BETTER JOB ON THIS THAN THE BELOW ADVICE.
I agree with Jeffrey here - I would create a table...
July 8, 2021 at 9:45 pm
I agree with ratbak here. You need some way that SQL can order the data that makes logical sense.
One HUGE problem with using the names of numbers is that it...
July 8, 2021 at 9:33 pm
I would like to add to what Eric said.
I think your test case is flawed. You are not simply testing if having the LDF and MDF on different disks is...
July 8, 2021 at 8:55 pm
Ours fall into ZZartin's bucket too - if the new bug is low impact or low probability of reproduction or low risk, we tend to not roll back. If the...
July 8, 2021 at 4:44 pm
Since it is a JOIN, if that JOIN is on the PK/FK column, it may be already indexed. If it isn't, you MAY get a boost by indexing on that...
July 8, 2021 at 2:16 pm
If you want a single, minimum value returned, don't group the data.
July 7, 2021 at 8:20 pm
Viewing 15 posts - 1,036 through 1,050 (of 2,905 total)