Viewing 10 posts - 1 through 10 (of 10 total)
CREATE PROCEDURE dbo.spGetData @ID1 int, @ID2 int
AS
SET NOCOUNT ON
SELECT
T1.Param_ID
...
December 2, 2003 at 10:46 pm
Wish you had included a few examples of retrieving the output values from ASP, VBS, js.
November 25, 2003 at 8:45 pm
Hi Andy,
Your article gives substance and credibility to declarative statements around regularly published standards for database architecture. In many, if not most, cases I would have to agree “Always...
November 10, 2003 at 2:46 pm
Hi Matt101,
IGNORE_DUP_KEY will check each attempted insert or update to verify that it its key(s) are unique. Violations of the constraint will be ignored, i.e. they will not be...
October 10, 2003 at 1:39 pm
Shotgun approach:
Put indexes on columns of tables referenced by in the join clause.
Index columns which are selective and referenced in the where clause.
Use Graphical Show Plan: (Highlight your query &...
June 4, 2003 at 11:18 am
Have you tried running a profiler trace while using EM? You can also run the non-intrusive queries that are presented in the trace from QA and see if you...
June 4, 2003 at 10:53 am
in c:\boot.ini you can specify /NUMPROC=4
this will tell Windows to use the first 4 CPUs which are your "real CPUs"
hth,
joe
June 4, 2003 at 10:07 am
I just tried the following code in SS2k SP3. Timestamp behaves by incrementing each time a record is added or updated.
use tempdb
-- drop table dbo.t1
...
June 4, 2003 at 9:53 am
quote:
hmm,...quote:
That is odd, I just did it, in SQL 2000 and allow nulls...
June 4, 2003 at 9:48 am
select @@TRANCOUNT will give you the current open transaction count. Try executing: COMMIT WORK
If you get error"
Server: Msg 3902, Level 16, State 1, Line 1
The COMMIT TRANSACTION request has...
September 26, 2002 at 11:08 am
Viewing 10 posts - 1 through 10 (of 10 total)