Viewing 15 posts - 76 through 90 (of 248 total)
have a look here:
http://blog.netnerds.net/2007/05/vista-net-send-is-gone-use-msg-console-instead/
there are also new ideas in comments
But issue is with service account's permissions and it's better to consult with OS sysadmins
July 29, 2019 at 1:56 pm
I suspect also fragmented db file or disk block size - more I/O to do to get the same data?
July 29, 2019 at 1:33 pm
It looks like a bug
As soon as it adds incorrect spn record on the start, you can run a stored proc on startup which does setspn -D
It's not an elegant...
July 29, 2019 at 1:30 pm
Hi Andrey,
SQL server 2014 Value = 1 and Value_in_use = 1
SQL server 2016 Value = 0 and Value_in_use = 0
Thank You
as expected
read this :
https://www.mssqltips.com/sqlservertip/1964/sql-server-2008-backup-compression/
July 29, 2019 at 1:14 pm
Hi Andrey, yes same database and tables download from MS website.
small or large tables perform almost identical on Contoso
by the way, compare subsequent runs (durations) of the same query...
July 29, 2019 at 1:06 pm
Andrey, thanks. This is very helpful. I was hoping there was a 1 line, auto-magical script which could perform much of this but I understand it is a multi-step...
July 29, 2019 at 12:58 pm
thanks even though the contoso DB on both instances select query is fast on both instances?
are the tables the same in Contoso and your database?
what if you select *...
July 29, 2019 at 12:54 pm
But in SQL server 2014 I am not use compression
I bet it's configured there by default
run the query on both servers :
SELECT *
FROM sys.configurations
WHERE name...
July 29, 2019 at 12:51 pm
add ", COMPRESSION" and run backups again , compare backup sizes
example:
BACKUP DATABASE [DBName]
TO DISK = N'E:\Old\DBName.bak' WITH NOFORMAT
, NOINIT
, NAME = N'DBName-Full Database Backup'
, SKIP
, NOREWIND
, NOUNLOAD
,...
July 29, 2019 at 12:38 pm
run the command with switch "-WhatIf" and check what will happen with replication in your case
July 29, 2019 at 12:28 pm
https://docs.microsoft.com/en-us/sql/t-sql/statements/create-login-transact-sql
https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-role-transact-sql
use master
create login [AD\user1] from windows
use [MyDatabase]
create user [AD\user1] for login [AD\user1]
alter role db_datareader add member [AD\user1]
July 29, 2019 at 12:23 pm
Any help is appreciated. Thanks!
in case if default trace is enabled, get ClientProcessID and check process trying to connect :
DECLARE @trcpath nvarchar(256)
SELECT
@trcpath=left(CAST(value as...
July 29, 2019 at 12:12 pm
I think maybe there are another ways to take backups without transaction logs.
You can think over database snapshots , if COB backups are needed only in case of...
July 29, 2019 at 10:17 am
couple of ideas:
July 29, 2019 at 9:50 am
Viewing 15 posts - 76 through 90 (of 248 total)