Viewing 15 posts - 1,486 through 1,500 (of 2,062 total)
April 5, 2006 at 2:24 pm
You can shrink the database (reclaim unused space) with
DBCC SHRINKDATABASE
DBCC SHRINKFILE
See the books online for more information.
April 4, 2006 at 10:11 am
Have you tried increasing/decreasing max worker threads?
April 4, 2006 at 10:04 am
Do you have the truncate (remove unused space) on in your maintenance plan?
Sure you do the same type of backup (full, differential,...)?
April 3, 2006 at 10:41 am
Have you watched your performance counters?
Perhaps the server is too busy with I/O or something else.
April 3, 2006 at 10:37 am
Perhaps a difference on servicepack level of the clienttools.
Do they match the sql server servicepack level?
April 3, 2006 at 10:35 am
You will have a performance drop since it needs to communicate with another server.
How large the drop will be depends on the amount of data & network latency.
March 29, 2006 at 7:23 am
Your commandtimeout is adjusted to 10 minutes?
Is there any rollbacks of transactions?
You can post your query in the T-SQL forum if you need to speed it up.
March 27, 2006 at 3:36 am
Hello again.
Normally when there is a time-out you get an error.
The stored procedures does return the results in the query analyzer?
March 26, 2006 at 11:30 pm
SELECT *
FROM Table1
INNER JOIN Table2
ON Table1.Date = Table2.Date
AND Table1.Date >= convert(datetime,'20060324') /*always pass universal date, with function on the right allows indexes to be used*/
AND Table1.date < dateadd(d,1,convert(datetime,'20060324'))
March 24, 2006 at 4:52 pm
Hello.
*Applying a function on the restrictive column is really nasty for your performance as you force out a full table scan instead of an index scan.
This also leads to additional...
March 24, 2006 at 10:41 am
The table definitions are the same? (char vs varchar)
March 24, 2006 at 10:35 am
*Closing the connections would be a great start. (releases remaining locks etc)
*Sql server's goal is to occupy memory till 4-10mb free memory is left over. (in dynamic memory allocation mode)
Motto: not...
March 24, 2006 at 10:24 am
1)Always specify the datalength when converting, otherwise you risk truncation
->CONVERT(VARCHAR(20),CREATED_DATE,101)
2)What datatypes are @START_DATE and CREATED_DATE?
March 23, 2006 at 12:10 pm
Have a look at http://support.microsoft.com/kb/839279
it is the "full" version of the problem description.
March 23, 2006 at 12:05 pm
Viewing 15 posts - 1,486 through 1,500 (of 2,062 total)