Viewing 15 posts - 136 through 150 (of 455 total)
Luis Cazares (4/29/2015)
April 29, 2015 at 1:20 pm
Luis Cazares (4/29/2015)
Aren't you using a staging table to prevent problems?
Actually, we are using a staging server, that stays between our vendors and us, but in our hands.
But in...
April 29, 2015 at 12:32 pm
Steve Jones - SSC Editor (4/29/2015)
+1 to cunningham.Also, what's a performance problem? Is it slower than it was before? By what metric? Or is it just that users are complaining?
The...
April 29, 2015 at 12:23 pm
cunningham (4/29/2015)
April 29, 2015 at 12:13 pm
OK, that's OS, now I am convinced. But here is another question: how to find OS processes that contribute the most to pages/sec?
April 24, 2015 at 10:30 am
Thank you both for replies.
But as I understand correctly, once SQL Server reached its max. server memory, it does not give it back to OS. For example in my situation...
April 23, 2015 at 10:50 am
MVDBA (4/17/2015)
we can't do initialise from backup as there are multiple publications replicating to the subscriber database - restoring...
April 17, 2015 at 9:57 am
You just answered to your question - yes it is proportional fill.
But let me ask you another question: why don't you initialize replication with backup/restore? You won't have such...
April 17, 2015 at 9:37 am
Are you trying to copy from SSMS using xp_cmdshell or from Windows Explorer via RDP to the box?
April 15, 2015 at 10:15 am
Thanks Grant for these leads.
I am not experienced with extended events, so I started digging with sys.dm_exec_query_stats. Particularly with total_physical_reads. But what I can use to join two snapshots of...
March 30, 2015 at 3:27 pm
select p.publication,
status = cast(m.status as smallint)
from MSpublications p join MSreplication_monitordata m
...
March 26, 2015 at 7:54 am
Database diagrammer in SSMS
March 23, 2015 at 11:45 am
use msdb
go
select s.backup_set_id,
s.first_lsn,
s.last_lsn,
s.database_name,
...
March 18, 2015 at 8:42 am
These are not initial but current sizes. SQL Server does not keep the file size at the time when you have initially created database. Check sys.database_files view. It has size,...
March 18, 2015 at 7:49 am
It will work. But is this production? In order to insure that no data will be lost while database in simple recovery model, try to get an outage window from...
March 17, 2015 at 1:01 pm
Viewing 15 posts - 136 through 150 (of 455 total)