Viewing 15 posts - 706 through 720 (of 7,472 total)
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
-- was to quick --
How about:
If you are able to extract the 4-part-named object usage
create a schema e.g. [work], generate and execute a
'select * into work.[4-part-named-object] from 4-part-named-object where 0...
October 29, 2021 at 12:35 pm
I don't use automatic seeding, because I want to have control over the full process.
You can indeed restore the db on the new AG-member-to-be including the log restores ( with...
October 29, 2021 at 12:23 pm
Viewing 15 posts - 706 through 720 (of 7,472 total)