Viewing 8 posts - 1 through 8 (of 8 total)
I think, there is some mistake in the correct answer. Both the queries are same in the sense that they return same resultset. In the explanation of the question, it...
February 27, 2009 at 2:39 am
Hey Powell,
Here is my query:
Select replace( subp.vproduct+
l.vtype+
...
February 12, 2009 at 5:43 am
The thing is that I need to store the output of a query (which is more than 8000 char) into the text column.
And other thing is that string operations like...
February 12, 2009 at 5:09 am
if you have access to the application source code which is using this database, then you can debug the application and find out when the records are inserted.
You could also...
February 9, 2009 at 4:47 am
Hi,
you could use the @@rowcount property for getting the number of rows of a table and store in some variable to be used in some query.
eg:
select * from tableName;
select @@ROWCOUNT;
Mayur
February 9, 2009 at 4:09 am
Hi,
try the following simple script:
-------------------------------------------------------------------------------
declare @count int;
declare @counter int;
declare @STR varchar(20);
declare @temp varchar(1)
declare @tbl table
(
id smallint identity,
alpha varchar(20)
)
insert into @tbl select a from alpha;
select @count=count(1) from @tbl;
set
February 9, 2009 at 3:02 am
Hi,
have a look at this atrticle. I hope it would help you.
http://www.sqlservercentral.com/articles/Error+Description/65013/
February 9, 2009 at 12:07 am
Viewing 8 posts - 1 through 8 (of 8 total)