Viewing 15 posts - 2,596 through 2,610 (of 7,502 total)
Is this a named instance or a default instance ?
IMO it should be doable for a default instance, provided you follow the "rename server" procedure sequence after you restored the...
December 10, 2010 at 9:24 am
IMO you should split your @consultants string using another split character !!
Your data contains a comma, and your current split function is called using a comma as split character, so...
December 10, 2010 at 9:19 am
sql2008 uses compression to ship log records to its mirrored dbs.
December 10, 2010 at 9:04 am
one of the down sides of a system upgrade is you may end up with old stuff you don't want. ( vs new install and userdb migration )
- did you...
December 10, 2010 at 9:02 am
Easiest way to show open transactions is using sql server management studio (SSMS).
Connect to your sqlinstance, double check you are connected to the correct database and then execute
dbcc opentran
another this...
December 10, 2010 at 1:51 am
- someone may have restored your db to that point in time. (maybe targeted the wrong server.
- Do / did you have long running open transactions ???
- check your instances...
December 9, 2010 at 10:42 am
GCeaser@aol.com (12/9/2010)
....The tail log backup would of course only be taken and used in the event of a database failure to forward recover as I indicated in my original posting.
Did...
December 9, 2010 at 10:38 am
- you simply cannot empty the first "primary" file as it contains all catalog info !
Your alternatives could have been to add another filegroup, and put two files in that...
December 9, 2010 at 10:27 am
apparently something went wrong in your setup process.
I would clean it up totally and start all over again.
Prepare your checklist and tick the steps you perform.
December 9, 2010 at 10:11 am
You should first have looked in your sqlserver errorlog.
- what topology of mirroring were you using ?
- did you have a look at your SQLServer ERRORLOG file ?
- did you...
December 9, 2010 at 9:20 am
abdul.samad.121 (12/9/2010)
..."Unable to route the incoming message. The system database msdb containing routing information is not available. The broker is disabled in msdb."
...
double check your both msdb broker setting.
SELECT ''...
December 9, 2010 at 3:58 am
this will be a source of coming bugs !(people will actually take if for a date and not just a number of days !)
But since you insist:
-- keep in mind...
December 8, 2010 at 6:11 am
- another thing to keep in mind is the size of your database files vs the size of your backup file(s). (time needed for the copy/move action)
December 8, 2010 at 6:07 am
Craig Farrell (12/7/2010)
AND cteTally.N <= DATEDIFF( dd, Temp.Date1NoTime, Temp.Date2NoTime)
This will restrict the crossjoin to just the # of Tally records you require.
FYI: the code...
December 7, 2010 at 1:32 pm
Viewing 15 posts - 2,596 through 2,610 (of 7,502 total)