Viewing 7 posts - 31 through 37 (of 37 total)
This isn't what you asked for but maybe you can modify it or get ideas from it. It searchs an entire database for a passed string:
CREATE PROC SearchAllTables
(
@SearchStr nvarchar(100)
)
AS
BEGIN
CREATE TABLE...
October 1, 2004 at 4:25 am
I don't know if this will help. You can cut down on the information returned after you run it.
This is from the CMS database and the table Claims.
SELECT *
FROM INFORMATION_SCHEMA.COLUMNS...
September 28, 2004 at 1:27 pm
This isn't my answer. I saw it posted from a Google search:
How can I find out the maximum row size for a table in which all the varchars are fully...
September 28, 2004 at 4:30 am
Just a couple more where the nth record can be picked:
DECLARE @var1 VARCHAR(12)
DECLARE @var2 VARCHAR(30)
SET ROWCOUNT 10
SELECT @var1 = id, @var2 = firstname FROM users ORDER BY id
SET ROWCOUNT 0
SELECT...
September 15, 2004 at 6:58 am
Well, I'm in the dark about what you are really trying to and just guessing that the one column table is to be used to generate a number that will...
September 9, 2004 at 5:24 am
My first thought is to set IDENTITY_INSERT on.
This will put an initial value in the table:
SET IDENTITY_INSERT OneColumnTable On
insert into OneColumnTable(ID) values (1)
This will insert a record one higher then...
September 9, 2004 at 4:24 am
You might try a google search. I got a few hits on "SQL Debugger Problem windows XP". Lots of different reasons for it.
This one:
http://www.winnetmag.com/Article/ArticleID/42729/42729.html]
might be what you mentioned.
August 26, 2004 at 4:32 am
Viewing 7 posts - 31 through 37 (of 37 total)