Viewing 15 posts - 706 through 720 (of 2,863 total)
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
I have a few thoughts on this.
First - is this consistently returning the same number of rows? Like if you run the query 10 times do you always get 1035...
December 10, 2021 at 7:05 pm
I agree with Fredrico_Fonseca on the performance question - it depends on a LOT of factors and the EASIEST way to know if it helps or not is to test...
December 10, 2021 at 2:09 pm
As a thought - is it a native backup or a 3rd party tool (like redgate) backup? Is the backup encrypted? Can you restore the backup to another 2012 STD...
December 9, 2021 at 10:07 pm
One option you could do (probably not ideal, but a possibility) would be to use something like the scripting agent in SSIS to open the file in excel (hidden window)...
December 9, 2021 at 5:35 pm
That I am not 100% certain on, but in my opinion - I would buy some sort of SQL monitoring tool. It will let you know when a deadlock occurs...
December 9, 2021 at 4:56 pm
My opinion - this is likely not a database issue, but possible a configuration issue.
BUT to rule out database, I would do a dbcc checkdb to make sure nothing is...
December 9, 2021 at 4:00 pm
The other bit of "fun" with that, on top of what ZZartin siad, is that the TLOG may be in use by other queries that could be inserting, updating, or...
December 8, 2021 at 7:11 pm
Yep - you see that greyed out "script" button? Click on a checkbox then click on the script button then cancel out of that window.
That script button will tell you...
December 7, 2021 at 9:20 pm
I am not certain what you mean by "access the checkbox" in TSQL code, but I am 99% sure that all configuration options within SQL Server for all available features...
December 7, 2021 at 7:58 pm
Viewing 15 posts - 706 through 720 (of 2,863 total)