Viewing 15 posts - 1,471 through 1,485 (of 2,051 total)
I've found they arrive in SPAM sometimes. Atleast in my Yahoo account
April 12, 2006 at 12:24 pm
select @@version
According to the books online the xp_msver stored procedure gives more information
April 10, 2006 at 1:47 pm
That needs some deeper digging.
It is probably a locking issue. Are you familiar with enterprise manager/query analyer/sql profiler of sql server 2000.
Do you retrieve all the records you request instead...
April 10, 2006 at 1:09 pm
That needs some deeper digging.
It is probably a locking issue. Are you familiar with enterprise manager/query analyer/sql profiler of sql server 2000.
Do you retrieve all the records you request instead...
April 10, 2006 at 1:08 pm
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
Viewing 15 posts - 1,471 through 1,485 (of 2,051 total)