Viewing 15 posts - 3,631 through 3,645 (of 7,503 total)
CU4 for SP3 is out now.
What makes this CU very interesting is that "lock pages in memory" is now available in Standard Edition (X64)!
.
http://support.microsoft.com/kb/970279/en-us
its build number: 9.00.4226
June 24, 2009 at 5:16 am
Mani (6/23/2009)
one more question..Do you take the Tape backups of Differential and log backup files too? Is that necessary.
Because currently we are taking the Tape Backups after the full...
June 24, 2009 at 12:51 am
a3b2c1r46 (6/23/2009)
June 24, 2009 at 12:44 am
- The "inserted" and "deleted" (table) objects are only available in the trigger itself.
- The A in the code is the table alias for table F_articlewhere, meaning in that query...
June 24, 2009 at 12:39 am
Indeed, perform full db maintenance
start with:
DBCC CHECKDB (0) WITH ALL_ERRORMSGS, DATA_PURITY;
go
print '' ;
print '*********************************'
print '**'
print '** If DBCC CheckDB returned DATA_PURITY errors, you must view http://support.microsoft.com/kb/923247 !!! and repair...
June 23, 2009 at 1:25 pm
did you update your statistics ?
- sp_updatestats
- dbcc updateusage (0) with count_rows
June 23, 2009 at 1:21 pm
Just a little alternative to the above replies.
Maybe you can just create the backups on a local drive, in the last step of your local backup job, robocopy the .bak...
June 23, 2009 at 1:18 pm
can you post the results of:
(sqlserver version info)
Select @@version
In the SSC article Mani Singh posted in the first the scripts are very visible to me.
June 23, 2009 at 1:13 pm
There are two things with this/
1) the trigger supposes it will be fired after completen an update for single @cbmarq. If you update a table out of that "regular" oltp...
June 21, 2009 at 12:59 pm
doing that with any clr proc will be at least 95% overhead !!
e.g.
create trigger trIU_mytable
as
begin
insert into myaudit_table
select 'I' as operation, *
from inserted
union all
select 'U' as operation
, *
from deleted
end
Doing...
June 20, 2009 at 8:31 am
Great article Gail.
I'll add it to my forum signature :w00t:
June 20, 2009 at 5:09 am
mick miller (6/19/2009)
: What happens if you execute that statement separately ?
: (is the error persistent ?)
When I run the query directly on the server, then I don't...
June 20, 2009 at 12:52 am
First of all thank you for posting these mishaps and the work around.
We didn't encounter these problems when upgrading from sp2 cu2 to SP3 on our 2-node sql-cluster (multiple instances)....
June 19, 2009 at 5:06 am
I haven't encountered that kind of errormessage yet.
BOL nor KB contain an exact ref.
What happens if you execute that statement separately ?
(is the error persistent ?)
June 19, 2009 at 1:07 am
Sorry for the alte response, I lost track of this thread :blush:
- In what way does your SRVDW(dom\sadb) differ from your other servers ?
- Are these databases in a lower...
June 18, 2009 at 11:55 pm
Viewing 15 posts - 3,631 through 3,645 (of 7,503 total)