Viewing 15 posts - 316 through 330 (of 1,129 total)
RTaylor2208 (8/27/2013)
You can use the free RML utilities by microsoft to perfom this very actionhttp://support.microsoft.com/kb/944837
Not the easiest apps to use but very effective.
Have downloaded, yet to try. Thanks
August 28, 2013 at 9:47 pm
PRR.DB (8/22/2013)
Are you running this as a query from SSMS from your local machine?
yes..
If you using a scipt from your local machine using SSMS to populate 35 M...
August 23, 2013 at 8:15 am
Erland Sommarskog (8/22/2013)
August 22, 2013 at 8:27 pm
sql-lover (8/22/2013)
SELECT ss.sum_execution_count
,t.TEXT
,ss.sum_total_elapsed_time
,ss.sum_total_worker_time
,ss.sum_total_logical_reads
,ss.sum_total_logical_writes
FROM (SELECT s.plan_handle
,SUM(s.execution_count) sum_execution_count
,SUM(s.total_elapsed_time) sum_total_elapsed_time
,SUM(s.total_worker_time) sum_total_worker_time
,SUM(s.total_logical_reads) sum_total_logical_reads
,SUM(s.total_logical_writes) sum_total_logical_writes
FROM sys.dm_exec_query_stats s
GROUP BY s.plan_handle
) AS ss
CROSS APPLY sys.dm_exec_sql_text(ss.plan_handle) t
WHERE t.TEXT LIKE '%PROCEDURE NAME HEREt%'
ORDER BY sum_total_logical_reads DESC
almost....how do i point...
August 22, 2013 at 3:12 pm
PRR.DB (8/22/2013)
I am migrating 35 million data to another new table(EVALUATION_CRITERIA) using simple joins, But it is taking to execute around 24 hrs and system ram=16 GB,
Below are the...
August 22, 2013 at 10:33 am
Erland Sommarskog (8/19/2013)
curious_sqldba (8/19/2013)
August 20, 2013 at 8:45 am
Jeff Moden (8/17/2013)
curious_sqldba (8/17/2013)
August 19, 2013 at 12:12 pm
Thank you for sharing this article. Actually i had this question posted in forums also, so far no response, would like to know your thoughts please.
I have a view which...
August 12, 2013 at 10:28 am
Lowell (8/6/2013)
WinMerge, which is free, can compare folders vs folders or files vs files, and identifiy differences:will that do what you want?
Actually i do use winmerge, basically i have 10...
August 6, 2013 at 1:42 pm
GilaMonster (7/23/2013)
curious_sqldba (7/23/2013)
i) if a table has no clustered index and has non-clustered indices, do i need to compress the table first and then the nc indices?
Depends. Do you want...
July 23, 2013 at 1:14 pm
curious_sqldba (6/23/2013)
ALZDBA (6/23/2013)
This is how I would do it.
SELECT
datepart(mi,[startDate]) as MI,
min(startDate) as startDate,
avg(duration)...
June 23, 2013 at 10:14 pm
ALZDBA (6/23/2013)
This is how I would do it.
SELECT
datepart(mi,[startDate]) as MI,
min(startDate) as startDate,
avg(duration) Duration
FROM...
June 23, 2013 at 7:21 pm
Evil Kraig F (6/6/2013)
June 6, 2013 at 4:13 pm
GilaMonster (5/30/2013)
May 30, 2013 at 1:47 pm
GilaMonster (5/30/2013)
No. A restore always recreates the database as it was at the time of the backup. That includes the size of all files.
Thanks. When restoring does it restore MDF...
May 30, 2013 at 1:06 pm
Viewing 15 posts - 316 through 330 (of 1,129 total)