Viewing 15 posts - 691 through 705 (of 2,863 total)
Offhand, the best way I have found to search for it is to use SQL Search OR to script out all of the jobs and do a search in those. ...
December 15, 2021 at 7:09 pm
Yeah, I wasn't saying it was "good", it is just what it was doing. I prefer the "WHERE (A=@a) OR (@a IS NULL)" approach myself... and depending on how often...
December 15, 2021 at 6:57 pm
if @Parameter3 is null, then use table1.id2.
December 15, 2021 at 6:05 pm
My first step would be to load up the execution plan on both systems and make sure they look similar, if not identical.
Next, I would check for blocking while your...
December 15, 2021 at 5:48 pm
I am a bit confused why this is dynamic SQL and what you are trying to do. You have 2 stored procedures that appear to be unrelated. The first uses...
December 15, 2021 at 5:43 pm
As a thought - is your master database valid (ie not corrupt) prior to installing that update? I would run checkdb on it and verify that it is valid as...
December 15, 2021 at 5:37 pm
Is that your entire stored procedure or did you strip something out? It looks to me like you are missing a FROM.
December 15, 2021 at 5:35 pm
My understanding, it won't work QUITE like that. BUT what you could do is something like:
SELECT Itemcode,Itemname,ItemGroup
FROM tbl1
WHERE (itemgroup IS NULL and @ItemGroup IS NULL)
...
December 15, 2021 at 4:53 pm
DISREGARD THIS POST
I agree with Grant - you shouldn't need to do anything with the Antivirus. I also agree that it is likely going to be firewall related on either...
December 15, 2021 at 4:47 pm
Sometimes it is good having a lot of detail, sometimes people are looking for a "quick and easy" answer and my detail just gets skimmed or ignored.
The XE trace will...
December 15, 2021 at 4:20 pm
Do you have access to the source code behind the GUI? If so, I would tackle it on the GUI source side of things NOT on the database side of...
December 14, 2021 at 2:46 pm
I think a lot of it falls under "it depends". IF you have the licenses, I would recommend putting it on a separate machine. BUT SSRS needs a SQL license...
December 13, 2021 at 9:03 pm
My opinion - I would try your query as just a SELECT without the CAST and see what you get back, as well as selecting all values in that CTE.
If...
December 13, 2021 at 8:18 pm
Could you post your code and sample data and DDL?
You are doing something that the query optimizer thinks will be a SMALLINT, but that being said, 0.0000005328 WILL successfully cast...
December 13, 2021 at 7:34 pm
My opinion, if you want to toss the full backup on onedrive in smaller chunks, I would include MD5's with the backups.
I am a bit confused what you mean by...
December 13, 2021 at 7:21 pm
Viewing 15 posts - 691 through 705 (of 2,863 total)