Viewing 15 posts - 3,766 through 3,780 (of 7,503 total)
There may a couple of reasons you did not receive the meanth mail.
- check you db-mail objects to see if it has problems
use msdb
go
exec sysmail_help_queue_sp -- @queue_type = 'Mail'
go
select...
April 22, 2009 at 1:32 pm
BP is to close the connection.
If you have connection pooling enabled, windows will keep the ( logically closed ) connection open (I think by default 60 seconds).
So if you...
April 22, 2009 at 1:28 pm
Gail has written a nice article : http://www.sqlservercentral.com/articles/64582/
Also keep in mind you transaction log will grow up to the size it needs to handle your largest transaction !
Also keep in...
April 22, 2009 at 1:10 pm
SQL Server Migration Assistant for Access
Brief Description
Automates database migration from Access to SQL Server 2005.
April 21, 2009 at 2:09 pm
- is the sql heart beat check working ?
(cluster account needs connect granted for the sqlinstance)
April 21, 2009 at 2:06 pm
AFAIK no.
It all depends on your connections / commands ansi settings.
April 21, 2009 at 1:59 pm
If you login to sqlserver sql as a non sysadmin, you should be able to define the wanted schema as default schema for that account.
btw MS has published a tool...
April 21, 2009 at 1:57 pm
We use @temp tables to provide a usable example.
Just replace the table name in the query and use the currect column names and you should be fine.
April 21, 2009 at 4:50 am
I'm glad it could be of use to you.
We haven't encountered the issue on any other servers (yet) and still don't know what caused the files to be missing.
April 18, 2009 at 4:24 am
- there are a number of split functions available at SSC.
- or you can use a combination of :
e.g.
left(yourcol,charindex(':', yourcol)-1)
and
right(yourcol,datalength(yourcol) - charindex(':', yourcol)+1)
April 17, 2009 at 4:32 am
how about an hard IIS reset or "recycle" of application pools .... can that be causing the issue ?
See the IIS logs.
April 16, 2009 at 2:10 pm
Kent Zhou (4/16/2009)
The solution is restart DTC service, not need to restart the engine.
But what I'm confused is: why Begin distributed transaction doesn't work...
April 16, 2009 at 2:07 pm
Certainly no blame Gail 😉
Chances are I misinterpreted the advise and may have taken it to be applicable for as well dbcc updateusage as well as sp_updatestats.
Once again proves we're...
April 16, 2009 at 2:02 pm
Hi Gail, it must have been on 2009-03-10.
That's the date I modified my rebuild proc.
My "my posts" history only goes back til 2009-03-11 🙁
April 16, 2009 at 8:11 am
venu_ksheerasagaram (4/16/2009)
venu_ksheerasagaram (4/16/2009)
...
April 16, 2009 at 7:22 am
Viewing 15 posts - 3,766 through 3,780 (of 7,503 total)