Viewing 15 posts - 781 through 795 (of 7,472 total)
...
April 1, 2021 at 6:46 am
Check: https://www.sqlservercentral.com/articles/using-database-master-keys-in-sql-server
I haven't tested SSB with AGs myself. #blush# ( because we do not use it in that way )
March 31, 2021 at 9:56 am
because the log backup actually resets marks the log to be overwritten.
Preceding a full backup, you are sure that the next log backup will no longer contain encrypted log data.
March 31, 2021 at 9:42 am
only TCP/IP active ? ( Check SQL Server 20** Configuration Manager / Network Configuration )
March 31, 2021 at 9:40 am
we actually need your full bcp command to figure out what's going on.
REM Create_FMT_files
bcp "[yourdb].[yourschema].[yourtableorview]" format NUL -fD:\BCP\BCPExp\yourdb_yourschema_yourtableorview.fmt -S yoursqlserver -U sqluser-P sqlpwd -n -o D:\BCP\BCPExp\yourdb_yourschema_yourtableorview_fmt.log...
March 31, 2021 at 9:25 am
yes, you can.
ALTER DATABASE [master] SET COMPATIBILITY_LEVEL = 130
Do you have proprietary objects deployed in master db ?
if yes, can you check they are still working as...
March 31, 2021 at 9:19 am
/* 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
Viewing 15 posts - 781 through 795 (of 7,472 total)