Viewing 15 posts - 2,326 through 2,340 (of 7,502 total)
books online will have all the examples you need to start with.
topic "restore"
When using sql server management studio, you can also have it restore your database to a new...
February 15, 2011 at 10:19 am
keep in mind the engine states the error on your object 'dbo.Command' !
You'll have to investigate that table ( i assume ) and the indexes, constraints, .. on it.
February 15, 2011 at 10:13 am
In a clear moment you may be able to spot this kind of things .... if you have been bitten by it yourself frequently enough 😀
February 15, 2011 at 6:27 am
While it is fun conversing about the situation and the brain storm sessions about it, it'll not be fun for Gail.
As much as I have the impression supporting software vendors...
February 14, 2011 at 1:07 pm
Actually you've posted a nice example on how partitioning with sliding windows can help out very much when trying to keep "current" tables small and not losing online data with...
February 14, 2011 at 11:35 am
I think your only resource then would be
DBCC ind ( <database_name>, <table_name>, non clustered index_id*)
Have a look at Paul Randal s blog for more info of dbcc...
February 14, 2011 at 11:03 am
IMO you are fooling yourself by using the wrong PF with the correct table in your select query.
SELECT *
, $PARTITION.AnnualDateRange_PartitionFunction(OrderDate) AS PartitionNumber
,...
February 14, 2011 at 10:46 am
Have a look at "Managing Space Used by Objects" for the internals, how the engine manages it all.
Have a look at the poster Aaron Bertrand points to: http://sqlblog.com/blogs/aaron_bertrand/archive/2009/01/28/sql-server-2008-system-views-poster-is-now-available-for-download.aspx to get...
February 14, 2011 at 10:34 am
I've been out for the day :Whistling:
Anyway, any rollback statement will undo your whole transaction (including the original inserts and other stuff in the same transaction scope), so be careful...
February 14, 2011 at 10:22 am
did you manage to get your install corrected ?
February 14, 2011 at 3:49 am
just came across this art today at sqlblog : http://sqlblog.com/blogs/davide_mauri/archive/2011/02/13/sys2-scripts-updated-scripts-to-monitor-database-backup-database-space-usage-and-memory-grants-now-available.aspx
Maybe this can help you out.
February 14, 2011 at 3:48 am
Jeff Moden (2/13/2011)
gary.morey (1/31/2011)
Thank you. That did it!Heh... stop using font sizes, Gary. The defaults are just fine. 😉
I thought he was whispering it and SSC doesn't supply...
February 13, 2011 at 12:08 pm
a trigger is declared on an object and objects don't share triggers (afaik).
So you'll end up creating the trigger ( same or different content ) as n triggers, at...
February 12, 2011 at 11:18 pm
1) are the spaces ( after % and before the second % ) in your patindex needed ?
2) I would use datalength(pattern) in stead of len.
February 12, 2011 at 12:02 pm
This is my ref url for mirroring:
http://support.microsoft.com/kb/2001270
monitoring state changes
http://msdn.microsoft.com/en-us/library/cc966392.aspx
Follow up is based on these scripts:
/*
* DB Mirroring : followup
*
*/
/* show mirrored databases and their mirror-state */
Select db_name(database_id) as...
February 12, 2011 at 11:59 am
Viewing 15 posts - 2,326 through 2,340 (of 7,502 total)