Viewing 15 posts - 1 through 15 (of 27 total)
Hello David,
First thing suggested is to keep both your DB Server to same Service Pack. Your source is SP1 and Destination is SP2.
Second, Your Servers have different Editions. So please...
June 14, 2011 at 10:35 pm
Hi Gail,
I was also stuck in similar scenario, and my database went into DBName(Recovery) for a short time and then in backgorund it took 16 hour for the rollback part...
June 1, 2011 at 5:20 am
As you are assigned the new task of DBA.
The first thing I would suggest you to document all the Servers/Databases in your environment. Little bit lenghty and boring but...
May 10, 2011 at 12:07 am
Thanks Gail,
I did the same.
April 25, 2011 at 4:53 am
I got below error Before I ran Repair on my DB,when I tried to take DB ONLINE :-
The log scan number (8615:729:38) passed to log scan in database 'DBName' is...
April 25, 2011 at 4:16 am
I got below error when I tried to take DB ONLINE :-
The log scan number (8615:729:38) passed to log scan in database 'DBName' is not valid. This error may indicate...
March 28, 2011 at 12:26 am
Thanks Gail,
Because CheckDB didn't give any log error. Does this mean that CHECKDB never look for log file in its operation.
March 25, 2011 at 2:24 am
Try using Delete with Joining TableA and TableB with the 5 columns you have to check for match.
Please consider you condition for matching with OR and AND, whether all the...
September 12, 2010 at 11:26 pm
Hi,
Please post the table script and sample data so that we can further understand your problem.
August 12, 2010 at 3:15 am
Hi,
You can go through the below link and do some research how to configure it.
http://msdn.microsoft.com/en-us/library/ms151799.aspx
Thanks
August 9, 2010 at 3:44 am
Select distinct CoveNoteNo,ProposerName,
convert(decimal(18,2),FinalPremium) as finalpremium,
p.ProductName as Product,ChqNo,ChqDate
from DtlCvrNotePremium d with(nolock)
inner join usrmgmt..usgi_product p with(nolock) on d.product=p.productvalue
Where d.ChqNo is null and d.category='MO'
You can add a ISNULL filter and have...
August 9, 2010 at 3:36 am
Of Course the trace will stop, Since you are running SQL Profiler from machine A.
August 9, 2010 at 3:25 am
Thanks a lot for your views. I really appreciate your involvement with the topic.
Hi Jim,
I got exactly the same results you have posted with clustered index....
July 15, 2010 at 3:00 am
Dear Experts, I want to know why perfmon is showing page split while I am inserting incremental values for Clustered Index
Thanks in advance.
July 14, 2010 at 2:14 am
Thanks Jeff, Here is the script I am running and using perfmon I am measuring page splits/sec.
CREATE TABLE [dbo].[Tab1](
[ORG_KEY] [bigint],
[PROD_KEY] [bigint],
[TIME_KEY] [bigint],
[CST_NON] [float],
[CST_RPL] [float],
[RTL_NON] [float],
[RTL_RPL] [float],
[UNT_NON] [float],
[UNT_RPL] [float],
[UPDATE_DATE] [datetime]
)
with...
July 14, 2010 at 2:13 am
Viewing 15 posts - 1 through 15 (of 27 total)