Viewing 15 posts - 691 through 705 (of 7,466 total)
Heh... Temporal Tables. Reminds me of String_Split(). Fantastic idea but they left a part out... like who or what made the update. 🙁
Indeed, Jeff, that operational metadata should be...
December 16, 2021 at 9:13 am
another reason to keep up your software level 🙂
December 14, 2021 at 2:05 pm
If you want to do that using Powershell, I suggest you use SQLSMO or DBATools.
December 14, 2021 at 7:59 am
that is a (local) windows managed account, not a group!
December 9, 2021 at 6:43 am
double check the path to the sqlagent step log file. Something must be off
December 6, 2021 at 12:32 pm
Did someone modify the SQLAgent service account after the installation of this sqlserver instance ?
December 6, 2021 at 10:55 am
Here is the problem !
Your final query is
INSERT INTO dbo.TAllData(PartID
...
December 1, 2021 at 7:27 pm
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
Viewing 15 posts - 691 through 705 (of 7,466 total)