Viewing 11 posts - 1 through 11 (of 11 total)
Declare @holdname sysname
Declare getdbname cursor for
Select name
from master.sys.databases
order by name
Open getdbname
fetch next
from getdbname
into @holdname
while @@fetch_status=0
BEGIN
select
...
November 30, 2022 at 1:53 am
Jeff Moden:-
Yes, that was my exact test.
I have attached a test sql code.
Jeff, thanks for being a real one.
Sacrificing your soul to make sure that everyone gets a lot more.
Amen,
Daniel
November 30, 2022 at 1:49 am
Manny:-
I do not think example 2 actually works.
Here is your SQL Statement for Example 2:-
Declare @holdname sysname
Declare getdbname cursor for
Select name from master.sys.databases order by name
Open getdbname
fetch...
November 29, 2022 at 7:58 pm
Boss Man:-
Typo here:-
The documentation notes this is a strig function that takes two parameters, but not as most other functions.
Should read:-
The documentation notes this is a string function that takes...
October 20, 2020 at 9:50 am
Phil:-
It seems your thoughts here are not fully written-out:-
"Only bother with a re-connection strategy if you really need to the data. If it's just logging, then consider throwing it away...
October 19, 2020 at 10:41 pm
Guido :-
You cannot really resolve the issue.
Are you using encryption.
If you are using encryption the varbintohexsubstring function is used by DecryptByKey and other decryption routines.
Daniel Adeniji
March 26, 2020 at 4:52 pm
Roust_m:
Worked for me, as well.
Can't believe this is still an issue with MS SQL Server v2017.
Great Thanks for sharing.
Daniel Adeniji
February 25, 2019 at 1:06 am
Works for me, as well.
Source sql server 2005, Destination 2017.
Set Compatibility Level to 2008 using
ALTER DATABASE [LAB] SET COMPATIBILITY_LEVEL = 100
GO
February 17, 2019 at 10:26 am
Chris:
I have battled with the same question for a while here. You did not give the exact offset that you are getting, nor the SAN Vendor.
If NetApp, I will...
April 16, 2013 at 6:33 pm
Mohit:
I need a bit of help to identify our current settings ratio of read to write Cache.
It seems that you eluded to knowing how in your posting:
Many things can cause...
April 3, 2012 at 6:41 am
It is quite possibly that the problem that I am having are related to "File System Filter Drivers":
A tale of CHECKDB failures cause by 3rd party file-system drivers
Two...
February 15, 2012 at 11:28 pm
Viewing 11 posts - 1 through 11 (of 11 total)