Viewing 15 posts - 241 through 255 (of 391 total)
Hi,
we start our ssms with a command line, to connect to different sql server in different domains.
But this is not slow, and it feels like you work local...
April 17, 2018 at 5:59 am
Hi,
are you working with (local) firewalls?
default port sql server engine is 1433, but DAC port is 1434
Are you able to telnet this port from server2 to server1?
April 5, 2018 at 3:09 am
Hi,
did you take a look to the log-file RSetup.log?
April 4, 2018 at 11:25 pm
Hi,
try this query to check your backup-compression-ratio:
SELECT
[database_name],
[backup_size],
[compressed_backup_size],
[backup_finish_date],
CAST(backup_size/compressed_backup_size AS DECIMAL(16,2)) AS backup_compression_ratio
FROM msdb..backupset;
It depends on...
April 4, 2018 at 5:59 am
Hi,
how did you create both users. If you created them without the same SID, for the sql server the users are different.
You can script the user from server...
March 22, 2018 at 7:27 am
Hi,
we use trace flag "3226".
We take log backups every 5 minutes, and we won't spam the errorlog with the successfully backup information.
Kind regards,
Andreas
March 22, 2018 at 12:43 am
Hi,
you can use cursor to query all your databases on your sql server:
Here is a very good link:
http://www.sqlservercentral.com/blogs/vivekssqlnotes/2011/07/21/cursor-in-sql-server/
Kind regards,
Andreas
March 22, 2018 at 12:39 am
Hi,
sorry for my missunderstanding.
I think it is not possible, to use 2 distribution databases for one publisher.
We were not able to do this with sql server...
March 19, 2018 at 2:33 pm
Hi,
this is a very good page for scaling out distribution:
http://www.sqlservercentral.com/articles/Replication/69663/
kind regards,
Andreas
March 19, 2018 at 2:12 am
Hi,
a backup won't shrink you logfiles. The internal LSN are marked for reuse.
Try to look the usage of your logfileDBCC sqlperf (logspace)
March 13, 2018 at 7:37 am
If you are installaling a SP for SQL Server, the sql server service will restart.
Kind regards,
Andreas
March 9, 2018 at 1:45 am
Hi,
what version of SSMS do you have.
Kind regards,
Andreas
January 30, 2018 at 12:30 am
Hi,
if you like Powershell, try this page:
https://dbatools.io/
With this set of tools you are able to move a complete database from server A to B, with logins,...
January 30, 2018 at 12:25 am
Hi,
this is a forum. It would be nice to share the question and the solution.
No post would be deleted.
kind regards,
Andreas
January 29, 2018 at 12:57 am
Hi,
what is the output if you try this command:
KILL xxx WITH STATUSONLY
January 17, 2018 at 1:38 am
Viewing 15 posts - 241 through 255 (of 391 total)