Viewing 15 posts - 1,051 through 1,065 (of 2,073 total)
Same as normal tables I guess. (available storage)
They are only recommended when the expected number of records will be low.
(due limitations like no indexing ...)
June 18, 2008 at 2:46 pm
The actual "start" values are mostly in the RPC starting and SQL Batch starting events.
June 18, 2008 at 2:38 pm
The different computernames can cause issues.
June 18, 2008 at 2:29 pm
Should be visbible in the version number
SELECT @@VERSION
or
execute xp_msver
List of version numbers:
http://www.sqlsecurity.com/FAQs/SQLServerVersionDatabase/tabid/63/Default.aspx
June 17, 2008 at 11:53 am
My apology for the pause.
Have a look at the end of
http://www.macronimous.com/resources/stored_procedures_for_ASP_and_VB_Programmers.asp
or
http://msdn.microsoft.com/en-us/magazine/cc163987.aspx
A more elaborate version inside the stored procedure:
http://www.novicksoftware.com/coding-in-sql/Vol3/cis-v3-N12-making-stored-procedures-readable.htm
June 17, 2008 at 11:50 am
You're welcome
June 17, 2008 at 12:29 am
Vacation is vacation. You could be anywhere on the planet, with an empty battery.
June 15, 2008 at 1:03 pm
Is the exe on a local drive (E:...)
or a network drive \\otherserver\myexe (not accessable by local machine)?
June 15, 2008 at 5:14 am
You could create views/storedprocedures on DB2 for the data you need to fetch from DB3.
June 14, 2008 at 12:34 pm
Error handling in sql 2000 is a tricky process.
You have to evaluate after each statement. Some errors immediately abort the batch.
statement
/*saving the error*/
@myvar=@@error
if @myvar<>0
BEGIN
doerrorhandling
END
statement
@myvar=@@error
if @myvar<>0
BEGIN
doerrorhandling
END
Inside the...
June 14, 2008 at 12:30 pm
Perhaps a security issue of sqlagent. What is its windowsaccount? Local machine, ...
June 14, 2008 at 12:22 pm
Is the update being done with .Update (can be slow) or with an update-sql statement?
June 11, 2008 at 11:10 am
Adding some code to quickly scroll to the bottom and back up?
June 10, 2008 at 1:06 pm
It is affected by the number of records.
Do you have a covering index on (stime,savg) to avoid bookmark lookups?
June 7, 2008 at 6:04 am
Viewing 15 posts - 1,051 through 1,065 (of 2,073 total)