Viewing 15 posts - 61 through 75 (of 186 total)
If your database is using the full recovery model, you really need to setup transaction log backups.
That is absolutely correct.
This will keep your transaction logs from filling up your log...
September 24, 2009 at 11:16 am
Actually I have already installed SQL Server 2005 EE, but due some problems
That is why Microsoft doesn't support this type of installation.
What is the reason to brake a...
September 24, 2009 at 10:58 am
espanolanthony (9/24/2009)
so one more questionwhat will the below command do
BACKUP LOG P003 WITH NO_LOG.
where will the log file save.
It will be saved nowhere.
As I said run this script...
September 24, 2009 at 9:46 am
Shirniking the Database or Log is a very bad idea
Shrinking The Log file in case of emergency situation is the only idea.
And it is very common when even having great...
September 24, 2009 at 9:43 am
BACKUP LOG yourDB TO DISK = 'D:\SQLBackups\yourDB.trn'
DBCC SHRINKFILE ('yourDB_log', 200) WITH NO_INFOMSGS
You should run it as one single transaction
If you don't have a log shipping or replication running on your...
September 24, 2009 at 9:29 am
Raghavender (9/24/2009)
And my OS is Windows XP with SP3.
Actually first I have installed the SQL 2000, 2005 and 2008.
Due to some problems I have uninstalled all of them.
Now...
September 24, 2009 at 9:15 am
It is a good question.:-)
Without seeing the database and a table it is difficult to be very specific, but the general guidelines is here.
1. Use table partitioning (vertical or horizontal)...
September 24, 2009 at 9:04 am
Such an association between a thread and a processor is called processor affinity.
Although efficient from an operating system point of view, this activity can reduce Microsoft SQL Server performance...
September 24, 2009 at 8:34 am
What Edition of SQL Server are you trying to install?
What Windows OS do you have?
September 24, 2009 at 8:16 am
Thank you for update, it is certainly a good news.
September 23, 2009 at 1:28 pm
vsmurali111 (9/23/2009)
I am trying to attach the model db from E drive before and it failed.
I did found that the modellog.ldf system handle is pointing to D drive.
How do...
September 23, 2009 at 12:48 pm
1. I have a model db backup as of 10 to 15 days back. Will restoring db from command line help?
You are on SS2000.:(
The model and msdb databases can only...
September 23, 2009 at 12:30 pm
1. Script your replication
2. Disable replication
3. Detach database
4.Copy database files
5. Attach your database
6. Run your replication scripts from SSMS - your replication will be recreated.
7. Go to the Replication agents...
September 23, 2009 at 11:58 am
Looks like some process has the .ldf of the model database locked.
It could be not a SQL Server process, but OS process as a result of previous attempts to fix...
September 23, 2009 at 11:50 am
Viewing 15 posts - 61 through 75 (of 186 total)