Viewing 15 posts - 736 through 750 (of 7,504 total)
did you specify the "ApplicationIntent=ReadOnly" parameter with your connection and is you secondary readable?
December 1, 2021 at 1:41 pm
I put dev in read-only restricte mode ( with rollback immediate ) to force everybody out, before attempting to restore.
December 1, 2021 at 1:39 pm
is SQLServer Configuration Manager working OK ?
November 30, 2021 at 12:57 pm
Add RAM & SSD ( especially for tempdb )
November 30, 2021 at 10:49 am
FYI Many of the production restores I've had to perform was due to devs learning the delete statement.
BTW I messed up a couple of client machines myself tampering with powershell...
November 30, 2021 at 7:13 am
create clustered index ci1 on z1(id) --> creates a non-unique clustered index ( that holds the data at leaf level ! )
alter table Z1 Add constraint PK_Z1 primary key (id)...
November 17, 2021 at 7:21 pm
Check out dbatools.io Export-DbaDbTableData
November 17, 2021 at 6:57 pm
You should indeed figure out if implementing the suggested missing index makes sense ( chances are ).
Maybe even add an index on your dbo.PLNewData table ( I've just put the...
November 4, 2021 at 10:48 am
Test the given catch-all options ! YMMV ( I'm on the "option (recompile) should be a last choice" side)
November 4, 2021 at 8:52 am
after database restore, you need to double check and setup SSB again !
November 1, 2021 at 8:31 am
What I wanted to point to is that a given UniqueClaimID e.g. 10929_6155... is being counted 5 times as there are 5 ProvOrgNm using it, on a total of 134865...
October 29, 2021 at 2:57 pm
No offense intended at all, nor questioning any level of knowledge.
So you're talking DNS aliasses, wright?
You could connect using "MyInstanceName\MyInstanceName" , no port number needed and SQLBrowser will resolve the...
October 29, 2021 at 2:45 pm
If you're using SQLuser accounts, be sure to copy them up front
Easyiest using DBATOOLS powershell module
$SourceSQL = 'Server\instanceA'
$TargetSQL = 'Server\instanceA'
Copy-DbaLogin -Source $SourceSQL -Destination $TargetSQL -ExcludeSystemLogins
you can even...
October 29, 2021 at 1:11 pm
Well, some instances may not use port 1433 !
You'll actually need to double check that the instance you are trying to address is actually the one listening at that port...
October 29, 2021 at 12:57 pm
Viewing 15 posts - 736 through 750 (of 7,504 total)