Viewing 15 posts - 1,816 through 1,830 (of 6,395 total)
Ah, ok, I have never run into this issue in the past, but will keep it in mind should I encounter it.
November 4, 2015 at 4:26 am
MS recommendations is to filter out anything with a page count less than 1000
Then reorg anything less than 30% fragmented and rebuild anything greater than 30% fragmented.
SELECT
case when avg_fragmentation_in_percent...
November 4, 2015 at 4:22 am
Generally I put 0 in TCP Dynamic Ports for all of the IP segments except IPAll.
November 4, 2015 at 4:17 am
Whats the page count of the indexes still fragmented and what are the index types?
SELECT object_name(IPS.object_id) AS [TableName],
SI.name AS [IndexName],
IPS.Index_type_desc,
IPS.avg_fragmentation_in_percent,
IPS.avg_fragment_size_in_pages,
IPS.avg_page_space_used_in_percent,
IPS.record_count,
IPS.ghost_record_count,
IPS.fragment_count,
IPS.avg_fragment_size_in_pages
FROM sys.dm_db_index_physical_stats(db_id(N'PCSTESTDBV2_11042015'), null,...
November 4, 2015 at 3:46 am
Care to post your logs, obfuscated of course for any critical information, the status messages should get logged
Also take a look at https://msdn.microsoft.com/en-us/library/ms365781.aspx for tips on monitoring mirroring.
November 4, 2015 at 2:48 am
select max(repdate) from @tempdat where repdate < @StartDate
November 4, 2015 at 2:31 am
There should be an entry in the SQL log when it disconnects
November 4, 2015 at 2:24 am
Jeff Moden (11/3/2015)
No takers on the job description I posted a while back?
Remote working an option?
November 4, 2015 at 2:19 am
Ed Wagner (11/3/2015)
whereisSQL? (11/3/2015)
djj (11/3/2015)
Ed Wagner (11/3/2015)
eccentricDBA (11/3/2015)
djj (11/3/2015)
Ed Wagner (11/3/2015)
DonlSimpson (11/3/2015)
djj (11/3/2015)
Ed Wagner (11/3/2015)
anthony.green (11/3/2015)
BaseOperations
Logistics
Inventory
Perpetual
Motion
Machine
Time
Paradox
Logical
Physical
structure
November 4, 2015 at 2:17 am
Take a look at sys.database_mirroring specifically the mirroring state column
November 4, 2015 at 2:10 am
I can't make heads nor tails of your sample data.
Can you please take a look at the link in my signature on posting code and data for the best help,...
November 4, 2015 at 2:05 am
This produces the result set required.
create table #quotedetail (QuoteNum int, Brand varchar(10))
INSERT INTO #quotedetail values
(10047,'NISSAN'),
(10048,'TOYOTA'),
(10049,'TOYOTA'),
(10050,'BOBCAT'),
(10050,'JOHN DEERE'),
(10050,'KAWASAKI'),
(10050,'MANITOU'),
(10050,'POLARIS'),
(10050,'SKYLARK'),
(10051,'DOOSAN'),
(10051,'MITSUBISHI')
select * from #quotedetail
Select distinct QD2.QuoteNum,
substring(
...
November 4, 2015 at 2:03 am
Can you post screenshots of your TCP/IP configuration
November 4, 2015 at 1:50 am
The transfer logins task can copy the logins and SIDs, but not the passwords. It copies the logins with a random password and it also disables the login.
The best...
November 3, 2015 at 8:27 am
Viewing 15 posts - 1,816 through 1,830 (of 6,395 total)