Viewing 4 posts - 1 through 4 (of 4 total)
Hi Chris,
Using XML to post data from ASP pages to SQL database. A function in a schema to encrypt special characters in a URL did not so for % (pure...
August 17, 2004 at 9:12 am
Thanks very much, pointed me in the right direction.
The ASCII value of the bad character was 0.
So I was able to locate records containing the offending character using
select * from...
August 17, 2004 at 4:11 am
oops...dropped a bracket!
CREATE TABLE #FeatureLevels (
FeatureID smallint NOT NULL DEFAULT 0,
UserLevel varchar(50) NOT NULL
CHECK (Userlevel in ('Guest','User','Administrator')),
[Desc] varchar(255) NULL
)
August 16, 2004 at 10:08 am
I copied your code in SQL-QA and it works for a temp table with
CREATE TABLE #FeatureLevels (
FeatureID smallint NOT NULL DEFAULT 0,
UserLevel varchar(50) NOT NULL
CHECK (Userlevel in...
August 16, 2004 at 10:07 am
Viewing 4 posts - 1 through 4 (of 4 total)