Viewing 15 posts - 886 through 900 (of 1,655 total)
The first thing I ask when dealing with problems on maintenance plans in 2005 is which Service pack is installed. There have been a couple of bugs and most of...
May 19, 2008 at 11:53 am
Usually if you can't expand a database in SSMS it's because the database is not online. Check the status of the database either through sys.databases or DATABESPROPERTYEX.
Depending on the state...
May 8, 2008 at 10:45 am
ahutchens (5/8/2008)
"Table_X does not exist or you do not have permissions."
I've verified that the user...
May 8, 2008 at 8:56 am
Trigger actions are limted to the local server.
Replace you're ddl trigger with an event notification. You can then send message to anther server using service broker.
May 8, 2008 at 7:22 am
Gail
there is a webcast aboutthis, at least I hope it's still available.
May 8, 2008 at 5:59 am
in your original post you worte it works on the server but not on the client.
So now I wonder where is your Excel sheet located ? On the server or...
May 8, 2008 at 5:50 am
r5d4 (5/7/2008)
I've tried a trigger for the all encompassing 'DDL_DATABASE_EVENTS' but that didnt fire 🙁
The DDL_DATABASE_EVENTS have a database scope, so this won't work. Unfortunately for you only CREATE_DATABASE is...
May 7, 2008 at 10:40 am
Just saw your edit of the original post and now I'm sure. In the RTM version it was called Object Explorer details and either Sp1 or 2 changed it to...
May 7, 2008 at 9:37 am
Not sure if this is the case for you, but I seem to remember that there have been some changes to the summary page through the different service packs. Did...
May 7, 2008 at 9:36 am
You could try to use a DDL trigger. I have never tried it but it should be possible.
May 7, 2008 at 9:31 am
As said before, if you need both databases available replication is the only option.
Merge replication is only necessary if you want to make changes on both databases, otherwise I...
May 7, 2008 at 9:29 am
Oops, I should have read it more slowly.
Actually you're if you look at your code 65536 and add the 512 for Offline the result is 66048.
The value in sysdatabases...
May 7, 2008 at 8:18 am
These are the official statuscodes from the SQL2000 documentation
Status bits, some of which can be set by the user with sp_dboption (read only, dbo use only, single user, and so...
May 7, 2008 at 8:10 am
The number of jobhistory records which are kept in the masb is limited. If I remember right the default is 1000 rows. It looks like your every10min job creates so...
May 7, 2008 at 5:12 am
With SP2 for SQL 2005 MS introduced LOGON Triggers.
See
http://msdn.microsoft.com/en-us/library/bb326598.aspx
or
http://www.sqlservercentral.com/articles/SQLServerCentral.com/sqlserver2005logontriggers/2366/
May 7, 2008 at 1:42 am
Viewing 15 posts - 886 through 900 (of 1,655 total)