Viewing 15 posts - 196 through 210 (of 663 total)
AnzioBake is correct.
BOL 2000 states, When SET QUOTED_IDENTIFIER is ON, all strings delimited by double quotation marks are interpreted as object identifiers
create table Temp (a text,...
September 3, 2003 at 2:20 am
Have a look at http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/sql/reskit/sql2000/part3/c1161.asp
Read in SQL Server Books Online about TEXT, READTEXT and WRITETEXT.
September 3, 2003 at 1:35 am
I think it depends on the severity of the error, some of the errors abort and rollback the transaction and it will be difficult to trap in SQL. Can't you...
September 3, 2003 at 1:11 am
Can you supply a bit more info, error number, maybe code, etc.
September 3, 2003 at 12:57 am
The LOG function with a negative value can cause this error.
Can you step through the code with the debugger in Query Analyzer
Will check it at home tonight(now...
September 2, 2003 at 3:45 pm
How often does it occure
You do your update stats, defrag, checkdb, etc. stuff
September 2, 2003 at 3:30 pm
Can you post the code
Guess some funny/invalid value somewhere.
Example:
Select SQRT(-10)
September 2, 2003 at 3:23 pm
Bug in function.
Create Function ResolveFunnies(@Arg varchar(8000))
Returns @Answers Table (v Varchar(8000)) As
Begin
Declare @Tmp Table(Cnt Int,v varchar(8000))
Declare @v Varchar(1000),
@Cnt Int
Set @v='['
Set @Cnt=0
Insert @Tmp
Select 0,PlaceHolderText From Tmp1
Select...
September 2, 2003 at 5:09 am
Need a bit more work but may help a bit
Set Nocount On
GO
Create Table Tmp1(ID int,PlaceHolderText varchar(100))
GO
Insert Tmp1 values(1,'Hello [Name], is your age [Age]...
September 2, 2003 at 5:00 am
Did not add part to remove old data and to add the new aggregated data.
September 1, 2003 at 3:50 am
Hopefully this is not to far of the target
Set Nocount On
Create Table TMP(objectId UNIQUEIDENTIFIER,statsType INT,dtCreated DATETIME,hits INT DEFAULT 1)
GO
Declare @n UNIQUEIDENTIFIER
Select @n=NewId()
INSERT TMP(ObjectId,StatsType,dtCreated)...
September 1, 2003 at 3:46 am
August 31, 2003 at 3:11 am
Sounds like something has not been recompile/updated? Used to use Smart Viewer and remember the TTX files needed to be updated.
August 31, 2003 at 3:01 am
Viewing 15 posts - 196 through 210 (of 663 total)