Viewing 15 posts - 346 through 360 (of 457 total)
One thing is certain, Manual intervention is needed to get a log shipped secondary server database up and running as the primary database.
May 27, 2008 at 8:45 am
Are you saying that you rebuild the indexes on your table and you get performance issues because of fragmentation?
Do you perform any bulk data loads after the indexes have been...
May 21, 2008 at 9:42 am
Redgate provide a free tool that i beleive you can use to read the log...but i think that may only be available on SQL Server 2000 there are others out...
May 19, 2008 at 7:20 am
I have a script that appends (INSERT INTO) records from a staging table to a production table that has many indexes on it. At the end of the script I...
May 13, 2008 at 6:05 am
Use the following script in SQL 2005 to check for orphaned users -
SELECT UserName = name
FROM sysusers
WHERE issqluser = 1
AND sid is...
May 2, 2008 at 9:13 am
Red gate have a SQL Doc tool that may help with your problem...
May 1, 2008 at 8:14 am
Does he have a login for the server in question? is it SQL Server or Windows...If its SQL Server login is the server security setting set to mixed mode?
April 25, 2008 at 9:22 am
i had this on 64bit servers in a few cases
solution was to enable lock pages in memory, not sure if you need to enable AWE and the rest on 32...
April 25, 2008 at 9:13 am
You need to restart:
SQL server instance service that relates to the instacne in question
You do not need to restart the other services
April 25, 2008 at 9:00 am
The service account that runs the SQL Server Agent...is that the same as the SQL Server Account? For the job to run successfully the users that runs the agent will...
April 25, 2008 at 8:59 am
Toni,
When you enable 'allow remote' connections you will need to stop and restart the SQL service for the changes to take affect. maybe a place to start.
Hope this helps
Gethyn
April 25, 2008 at 7:15 am
Hi Jim,
The account that runs the SQL Server Agent will need approiate permissions to run the job sucessfully. If not then it will fail.
Hope this helps
Gethyn
April 25, 2008 at 7:13 am
I assume you are using the Full recovery model?
why would you backup the log with truncate only? surely that renders the log useless and hence your ability to recover?
Do you...
April 25, 2008 at 5:25 am
If you want the database for read and write...i.e break th log shipping and your happy that the database is uptodate and correct then you can restore the database with...
April 23, 2008 at 8:25 am
Viewing 15 posts - 346 through 360 (of 457 total)