Viewing 15 posts - 1,021 through 1,035 (of 1,065 total)
What is the filename extention of your backup files? Manitenance plan cleanup task deletes only .BAK/.TRN files.
Workaround is use FORFILES.EXE. Create a .BAT file and schedule it.
December 12, 2007 at 10:14 pm
How do you backup without affecting the maintenance plan?
December 12, 2007 at 10:03 pm
Schemabinding does not enhance UDF's performance.
It will make sure that the columns refered in the UDF/view are not dropped.
December 10, 2007 at 4:11 am
You can do this using Access.
Create ODBC linked table and queries.
December 4, 2007 at 8:45 am
TRUNCATE command
is the fastest way to delete ALL the rows from a TABLE, without filling up the transaction log.
December 4, 2007 at 7:49 am
1) Use DBCC CHECKTABLE to check the health of the table.
2) Use DBCC SHOWCONTIG to check the index fragmentation.
December 4, 2007 at 7:36 am
You can certainly write a scipt and schedule it.
MSDB database has details of all the backups done.
Check the following tables:
select * from msdb.dbo.backupfile
select * from msdb.dbo.backupset
select * from msdb.dbo.backupmediaset
select...
November 28, 2007 at 7:42 am
Also use
1) Query Execution Plan
2) SET STATISTICS IO/TIME ON/OFF
November 23, 2007 at 3:19 am
Right click on the publication you have created, select Properties, click Articles,
clear the check box "Show only selected objects in the list"
then select the table that you want to...
November 22, 2007 at 6:14 am
Did the Maintenace Plan run?
Check the history.
Have you mentioned the correct file path and extention.
Check how many days are there (default is weeks)
It should work.
It is very simple...
November 21, 2007 at 8:25 am
No. It doen't overwrite existing file as the new file names are different.
It deletes older BAK files. So free space will be created.
Are you backing up to same file?
November 21, 2007 at 7:52 am
Use Maintenance Cleanup Task to delete older BAK files.
November 21, 2007 at 7:15 am
127.0.0.1 is the reserved IP address of (localhost).
All servers have this.
No need to worry about this.
November 21, 2007 at 4:17 am
Hi Ahmed,
When a new database is created for the new client, this stored procedure can be altered.
As dynamic sql is not precomplied, I think conditional execution is faster.
However, I have...
November 21, 2007 at 3:11 am
Viewing 15 posts - 1,021 through 1,035 (of 1,065 total)