Viewing 15 posts - 2,086 through 2,100 (of 7,498 total)
can you reveal the version info of your sqlserver instances that participate in this dbmirroring setup ?
@@version
or
Select Serverproperty( 'Edition' ) as Edition
, Serverproperty( 'ProductVersion' )...
April 27, 2011 at 12:21 am
That problem can be solved using a service broker solution ( event AUDIT_ADD_DB_USER_EVENT to be investigated ).
or maybe even using extended events. ( could be in the audit events. I...
April 26, 2011 at 12:36 am
Please elaborate on your findings, situation and results or side effects.
April 25, 2011 at 2:23 pm
Now you have it: Gail answering an question referencing her article.:hehe:
And she did answer it very good (as is her article).
Nothing to add.
My guideline for clix:
- pick one
- keep it...
April 25, 2011 at 2:00 pm
you have been bit by the "select * " monster !!!!!!
Specify the columns you want to use and you'll be ok.
Try to avoid the cursor in the first place.
did you...
April 25, 2011 at 1:25 pm
Condolences and prayers to your friend's family.
I've lost an ex colleague last Friday who fought the battle against her cancer for a year.
That are the kind of events that really...
April 25, 2011 at 1:21 pm
did you try:
http://support.microsoft.com/kb/918992
or
http://www.sqlservercentral.com/scripts/31776/
Keep in min you would better do this procedure including login SIDs !
April 25, 2011 at 1:11 pm
Before Okt 2008, Easter day and New years day where the only two days our production would be in full stop.
The only occasion to do some real systems maintenance for...
April 24, 2011 at 8:27 am
Jack Corbett (4/23/2011)
http://www.sqlservercentral.com/Forums/Topic1094168-146-3.aspx
I hope my reply isn't too terse. I made...
April 23, 2011 at 5:33 am
you would have walked a safer path just posting the requested info !
Your solution may have worked, but might have been avoidable.
If I'm correct 2TB is the default max size...
April 21, 2011 at 11:46 pm
Based on the statistics ... ( are they accurate ? / auto_updateon ? )
how about:
create procedure sp_DBA_RowCount
@TableName varchar(130) = null
, @TableSchema varchar(130)= null
, @MinRows int...
April 21, 2011 at 12:04 pm
Post your sql errorlog file.
What's the db status ?
Is it online/offline/in recovery ?
Did you try sp_who_is_active to figure out what's going on ?
(b)locking, ...
April 21, 2011 at 11:52 am
"Guestimate" is the keyword.
You could start with determining each columns max data length (/2 for the number of chars)
Then create your trial table and try the import.
Keep in mind to...
April 21, 2011 at 11:47 am
someone forgot to update the download xls :blink:
April 21, 2011 at 3:28 am
the chaps already helped out 😉
the complex and/or/and/or where clause
The suggested:
WHERE QO01ACCIDENT_YEAR in ('2008','2009','2010')
AND
(QO01SUBMIT_AGENCY_ORI = 'XXXXXXXXX'
OR
QO01MUNICIPALITY = 'XXXX')
provides the same predicates,...
April 20, 2011 at 2:47 pm
Viewing 15 posts - 2,086 through 2,100 (of 7,498 total)