Viewing 15 posts - 691 through 705 (of 6,400 total)
Join only so you had to do a manual backup and restore of the database.
Did you restore every transaction log right up to the time you added the DB to...
October 26, 2021 at 8:27 am
"Black Arts" Index Maintenance - GUIDs v.s. Fragmentation - Jeff Moden - YouTube
October 25, 2021 at 11:58 am
Something like this?
DECLARE
@input INT = 15697
,@convert VARCHAR(100)
,@position INT = 1
,@result VARCHAR(100)
,@output INT
,@length INT
SELECT @convert = CONVERT(VARCHAR(100),@input)
SELECT @length = LEN(@convert)
WHILE @position <= @length
BEGIN
SELECT @result = ISNULL(@result,'')...
October 22, 2021 at 3:15 pm
No issues going straight to SP4.
Install the latest SP (sp4) then the latest security fix to ensure your at build 11.0.7507.
Plan your upgrade though, you have less than 9 months...
October 22, 2021 at 3:01 pm
Create your trigger as you normally would do but add the additional columns_updated() function to specify when it should fire for what columns you want to to update for the...
October 18, 2021 at 2:13 pm
You can do a read scale AOAG without the need for a cluster. You get no HADR features but if it’s just for reporting read scale is ample and you...
October 18, 2021 at 11:21 am
Really need to upgrade.
SQL2000 and Access 2000 really using 21+ year old technology in this day and age your asking for issues.
Your going to have to look at the queries...
October 17, 2021 at 7:02 pm
Restore from backup is your only hope.
October 17, 2021 at 6:59 pm
Zero day exploits you referring to?
For that I would look at ZeroDayLab / CyberClan etc to see what’s been reported.
Never seen Microsoft acknowledge a CVE until after they have issued...
October 15, 2021 at 9:52 pm
SSRS patching has changed since 2017 and it being a separate installer.
The below is the official doc on when fixes are released etc
However there is no separate exe for the...
October 15, 2021 at 9:17 pm
If that works for you great.
If not look at coalesce instead of isnull or some other construct.
You know your own data better than anyone here so you will need to...
October 13, 2021 at 6:48 pm
Instead of writing my own powershell I’d use dbatools and look at Get-DbaDbTable to replace your code then pipe that to convert-dbadatatable and then write-dbadatatable
October 13, 2021 at 6:43 pm
The only way what you describe working is if you had multiple tenants and they each had their own database.
Say you had a client in New York, you would put...
October 13, 2021 at 8:12 am
No that’s not how it works.
The same application which is split 50/50 between DCS needs to access 1 read write copy of the database and potentially multiple read only copies.
So...
October 13, 2021 at 8:07 am
Adhoc statements will be null
Object_Name function only works in the correct database context if you supply object_id only.
You need to pass it the database id also to get the right...
October 13, 2021 at 7:15 am
Viewing 15 posts - 691 through 705 (of 6,400 total)