Viewing 15 posts - 1,036 through 1,050 (of 2,062 total)
When exactly does the script stop from working.
According to the IE error, it is when the "count" variable is introduced.
Any mix in lettercase?
Does a select ownerID FROM callRecord instead of...
June 21, 2008 at 11:09 am
Which field are trying to modify?
* CONSTRAINT [eq_em_id] FOREIGN KEY
(
...
June 20, 2008 at 11:08 am
You could improve the accurary of the report with
DBCC UPDATEUSAGE
( { 'database_name' | 0 }
...
June 20, 2008 at 11:05 am
Hello,
If sql server is started with some trace flags (see the article), it logs detailed information in the sql server log.
Microsoft article about resolving deadlocks in sql server:
June 18, 2008 at 2:56 pm
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
Viewing 15 posts - 1,036 through 1,050 (of 2,062 total)