Viewing 15 posts - 781 through 795 (of 7,466 total)
/* https://docs.microsoft.com/en-us/sql/relational-databases/partitions/create-partitioned-tables-and-indexes */
-- Creates a partition function called myRangePF1 that will partition a table into four partitions
CREATE PARTITION FUNCTION myRangePF1...
March 29, 2021 at 6:46 am
Even opletten :
prv.value is a boundary value, left or right according to your partitioning definition.
It is the tipping point to put data in the next partition. ( in case of...
March 26, 2021 at 2:51 pm
-- http://www.davidemauri.it/DasBlog/CategoryView,category,Sql%20Server%202005.aspx
--create schema ALZDBA
/* Welke query(s) uitvoeren ? */
Declare @WelkeQuery int
/* 0 = alles , (1,2,3,4,5) is enkel die query */
set @WelkeQuery = 4
if @WelkeQuery in (...
March 26, 2021 at 7:24 am
You could use a scheduled task to run this Powershell script
( save it as e.g. C:\Powershell\SQLServer_Backup_Full.ps1 )
<#
Create sqlserver backup for all databases of the local default instance
Johan...
March 5, 2021 at 10:09 am
Check todays featured atricle "Monitor SQL Server Error Logs with PowerShell" to get you started
March 2, 2021 at 12:07 pm
do not drink e.g. orange juice as it is very sour and sweet which is bad for your voice.
February 26, 2021 at 2:58 pm
Database Mirroring in SQL Server 2008
SQL Server 2008 R2 Database Mirroring with Automatic Failover Across the Internet
It may be a bit late to start it all in 2021...
February 26, 2021 at 2:55 pm
All nice and well,
How about:
declare @Data table (begin_time varchar(8),
...
February 25, 2021 at 10:29 am
...MOVE N'NG_System_Data' TO N'E:\TestDB1\TestDB1.mdf', MOVE N'NG_Core_Data_1' TO N'E:\TestDB1\TestDB1.mdf', MOVE N'NG_Index_1' TO N'E:\TestDB1\TestDB1.mdf', MOVE N'NG_Log' TO N'E:\TestDB1\TestDB1_1.ldf', NOUNLOAD, REPLACE, STATS = 10 GO...
You are moving multiple files to the same...
February 18, 2021 at 12:29 pm
Double check configuration setting 'optimize for ad hoc workloads'
exec sp_configure 'optimize for ad hoc workloads', 1;
reconfigure
February 16, 2021 at 6:40 am
There is a vivid SQLServer community in Germany!
Maybe that's the way to go on your quest: SQLPass.de
February 15, 2021 at 7:54 am
What version of SQLServer are you on ?
SELECT SERVERPROPERTY('ProductUpdateLevel') AS ProductUpdateLevel -- SQL 2014 SP1 CU5
, SERVERPROPERTY('ProductUpdateReference') AS ProductUpdateReference
...
February 15, 2021 at 7:48 am
If I were you, I would indeed test it in SQL2019 and see how it performs.
Start with "Data migration Assistant" !
Then migrate - and follow up as Grant pointed...
February 9, 2021 at 8:46 am
I should indeed have been a bit more thoughtful and provided the nice context as you did, Grant.
A couple of sentences providing the full set of activities that are actually...
February 8, 2021 at 1:28 pm
February 8, 2021 at 11:07 am
Viewing 15 posts - 781 through 795 (of 7,466 total)