Viewing 15 posts - 61 through 75 (of 1,068 total)
neellotus07 (9/27/2012)
...After this i running query "Select * from "Tbl_Inv" then it taking 1.24 minutes but before this it was taking 2.53 minutes to complete...
Have you cleared the buffer before...
September 27, 2012 at 6:02 am
Use sys.dm_db_index_usage_stats to know the effectiveness of your existing indexes.
September 27, 2012 at 2:15 am
Yes. There is no change in restore.
Restore is same for compressed or normal backup.
September 27, 2012 at 2:00 am
Are you facing any performane issues?
Indexes are query specific.
So, please post your SQL statement and execution plan.
September 27, 2012 at 1:57 am
Jeff K (9/26/2012)
September 26, 2012 at 11:58 pm
Do you have access to the subscriber? If yes you can easily check and confirm.
September 26, 2012 at 11:53 pm
Following may be better solution, still worth implementing:
1) You can create a job run Subscription Validation.
2) You can create alert for latency.
September 26, 2012 at 6:13 am
Please run the following script to check why log entries are not removed:
select name, log_reuse_wait, log_reuse_wait_desc
from sys.databases
where name = 'Distribution'
Also run:
dbcc opentran()
September 26, 2012 at 6:06 am
What is the recovery model of your Distribution database?
It is supposed to be "Simple". If it is something else, change it to Simple.
September 25, 2012 at 11:16 am
Shrinking does't affect backup size. Becuase backup anyway contains only the used pages. Backup doesn't contain empty pages.
Have you considered compressed backup?
September 25, 2012 at 3:26 am
sa is member of sysadmin server role.
sysadmin role members don't need any additional role membership.
September 24, 2012 at 11:27 pm
No. Not on different machine. On different Drives.
It is a best practice to place data and log files on different drives for following 2 reasons:
1) DR (Disaster recovery). If one...
September 22, 2012 at 8:58 am
Following are important steps
1) Check database integrity
2) Backup database
3) Backup Transaction Log
Additional points:
1) Backup both user and system databases.
2) If the data and log files are on same drive, move...
September 22, 2012 at 12:30 am
There may be blocking issue. Please run the following query to confirm:
select status, blocking_session_id, wait_type, wait_resource
from sys.dm_exec_requests
where session_id = <spid>
September 17, 2012 at 1:36 am
The error message says
You may not be authorized to access this information.
I believe it is due to permission issue.
Use Proxy Account for the job.
September 13, 2012 at 10:34 pm
Viewing 15 posts - 61 through 75 (of 1,068 total)