Viewing 15 posts - 31 through 45 (of 55 total)
sys.dm_exec_query_stats will give you stats of various queries that have been run since last recycle or cache cleanup.
sys.dm_exec_qery_plan will give you execution plan of queries. THis is a function and...
October 11, 2011 at 4:54 am
jsauni (10/10/2011)
October 11, 2011 at 2:32 am
select name,type,
sum(single_pages_kb+multi_pages_kb) as MemoryKB
from sys.dm_os_memory_clerks
group by name,type
order by memorykb desc
October 11, 2011 at 2:03 am
http://msdn.microsoft.com/en-us/library/ms191304.aspx%5B/url%5D
You can directly backup a database to tape, however generally database backup is taken on disk and then the disk backup is copied to tape.
October 11, 2011 at 1:57 am
isuckatsql (10/9/2011)
Gives me the result below, and truncates the last phone number digit.
' 615-661-457'
If i change the FirstName to a...
October 9, 2011 at 2:01 pm
select * from sys.indexes where fill_factor<>0 -- assumption - default fill factor is 0
I have assumed the default fill_factor setting has not been checked. Run the below code to check...
October 7, 2011 at 9:41 am
hah. i saw the forum which is SQL Server 2008 🙂 Forgot op is using SQL Server 2000 while replying!
October 7, 2011 at 9:34 am
do the vendor needs to access the financial data? if not, you can scramble key columns in the database(customer details, account numbers etc), then take a backup and send to...
October 7, 2011 at 8:55 am
I guess the vbscript file is called using cscript.exe via a batch file(guess!!). You can use xp_cmdshell to execute the batch file.
It might not be enabled on your system. check...
October 7, 2011 at 8:52 am
You can try taking compressed backup and see the backup size. However, as said, the problem is of network. Get that fixed and get the network pipe size increased.
October 7, 2011 at 8:49 am
check if you have a default database set for this login ID.
October 6, 2011 at 8:27 am
You should leave your database to a size you think is sufficient to grow for may be a year or 6 months or so.
Having said that, If you have got...
October 6, 2011 at 8:18 am
Did you use the script mentioned in the link provided by Ninja's_RGR'us?
Ninja's_RGR'us (10/6/2011)
http://sqlfool.com/2011/06/index-defrag-script-v4-1
October 6, 2011 at 7:10 am
AK1516 (10/1/2011)
AND THE QUERY WINDOWS SAYSEXECUTING.......
At times, it takes more time to roll back/roll forward transactions copied from the log file in the backup file. It'll finish on...
October 6, 2011 at 12:38 am
dbdmora (10/3/2011)
October 5, 2011 at 10:32 pm
Viewing 15 posts - 31 through 45 (of 55 total)