Viewing 15 posts - 691 through 705 (of 2,857 total)
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
I can't say with 100% certainty the cause of the error, but to me that doesn't look like TSQL.
What I mean is the $ part and ESCAPE_NONE. I don't know...
December 13, 2021 at 4:55 pm
Has anyone used Brain Box SQL app for Android in the google play store?
What do you think?
I've been using it to connect remotely to my SQL Servers via...
December 13, 2021 at 3:13 pm
I think we may be on the right track but my data isn't presenting correctly. I'm getting (although the seconds are not visible, they are incorrect): December 13, 2021 at 2:09 pm
The way I would do it is similar to this:
DECLARE @test1 DATE = GETDATE()
DECLARE @test2 TIME = GETDATE()
SELECT @test1, @test2, CAST(CAST(@test1 AS VARCHAR(255)) +' '+ CAST(@test2 AS...
December 10, 2021 at 8:57 pm
That last bit is EASY to fix - trim your strings:
SELECT PARSENAME(TRIM(@statement), 1)
December 10, 2021 at 8:51 pm
What I would check, and what I expect the problem is, is the "Package" tab. What is probably happening or happened is that the SQL instance you are configuring the...
December 10, 2021 at 7:13 pm
Viewing 15 posts - 691 through 705 (of 2,857 total)