Viewing 15 posts - 946 through 960 (of 2,463 total)
If thats a non-production environment where restart the sql services is possible. set the size of MODEL database. it will be get inherited when sql gets restarted
September 28, 2012 at 7:25 am
Check both the processes(code inside job) there must be some code/ logic conflict.
September 28, 2012 at 7:20 am
thanks , can you please provide the Steve email.i haven't found it here.
September 19, 2012 at 2:40 am
Try these queries
Determining the Amount of Free Space in tempdb
SELECT SUM(unallocated_extent_page_count) AS [free pages],
(SUM(unallocated_extent_page_count)*1.0/128) AS [free space in MB]
FROM sys.dm_db_file_space_usage;
Determining the Longest Running Transaction
SELECT transaction_id
FROM sys.dm_tran_active_snapshot_database_transactions
ORDER BY elapsed_time_seconds...
June 14, 2012 at 5:49 am
Vertigo44 (6/13/2012)
Well it looks like there is no LOG directory and no .trc files anywhere.
select * from sys.traces
can give you trace file path
June 14, 2012 at 5:43 am
Script out the indexes from publication side and apply on subscriber.but do these pushes in business off hours with some settings like "sot in tempdb = on", ONLINE = on...
June 14, 2012 at 5:37 am
setup the profiler and trace the queries which are causing time out. Column filter Error code : 2
June 14, 2012 at 5:27 am
Why you want to keep different schema.?
Replication strong requires same PK definition
June 14, 2012 at 5:26 am
djordan 41144 (5/14/2012)
after I rebuild an index that has around 90% fragmentation it has no effect. The operation seem to not error.
defragmentation generally dosesnt work for small table (1000...
May 16, 2012 at 4:54 am
durai nagarajan (5/14/2012)
my jobs are running trough DBAdmin (running SQLAgent), if remove the access will it affect the jobs
yes but you need to replace it with another appropriate...
May 14, 2012 at 10:21 pm
maryamzolfaghar (5/14/2012)
Yes it runs successfully
then
Msg 15151, Level 16, State 1, Line 2
Cannot find the object 'Table', because it does not exist or you do not have permission. it...
May 14, 2012 at 1:16 am
ravisamigo (3/19/2012)
We've SQLServer 2005 logshipping configured on one of production database and the size of this db is around 1 TB. It will take more time to take the backup...
May 14, 2012 at 1:14 am
mirroring or transactional replication could be possible solution here but first database size and transaction frequency should be revealed here.
May 14, 2012 at 1:12 am
your query is returning so much of data, if optimizer is going for parallelism , i don't see any harm in it. additionally exec plan comparison can give you better...
May 14, 2012 at 12:42 am
Viewing 15 posts - 946 through 960 (of 2,463 total)