Viewing 15 posts - 46 through 60 (of 72 total)
Hi Friend,
I got the solution...
DECLARE @FileName varchar(255)
DECLARE @ExecCmd VARCHAR(255)
DECLARE @y INT
DECLARE @x INT
DECLARE @FileContents VARCHAR(8000)
CREATE TABLE #tempXML(PK INT NOT NULL IDENTITY(1,1), ThisLine VARCHAR(255))
SET @FileName = '"\\1.128.1.14\school\mlecontent\LMS\Contents\995_Module_LESSON I\imsmanifest.xml"'
SET @ExecCmd = 'type...
January 6, 2010 at 10:27 pm
Thanks Jack,
But I don't want to do it manually... So i need query which alters the SP in
all different servers at once..
January 6, 2010 at 9:02 pm
In my examples there are two groups
Group1: Java,Perl
Group2: Java,PHP
If an Candidate has both java and perl knowledge and then he has the full knowledge of Group1 then he is...
December 18, 2009 at 3:20 am
Friend ,
Thanks for your Query,I tried and compare with the other possibilities that i have mentioned in post, but yours taking more reads than other possibilities.
Please check it once
December 18, 2009 at 3:00 am
Moe is winne because he has the skills PHP and java which belongs to Group 2
December 17, 2009 at 12:13 am
ALTER PROC PagingAndSorting
(
@SortColumnNVARCHAR(255),
@SortDirectionNVARCHAR(4) = 'asc' ,
@rowsPerPageINT = 10,
@pageNumINT = 1
)
AS
BEGIN
DECLARE @To AS INT ,@From AS INT
SET @To = @pageNum*@rowsPerPage
SET @From = @To-@rowsPerPage+1;
WITH OrdTab AS(
SELECT Id,Code,Description,Price,Lot,Uom,
ROW_NUMBER()...
June 22, 2009 at 4:05 am
Thanx Saurabh for ur reply
but i may contain this text also
@text='CAST(@Id nvarchar(100))
CAST ((@pageNo * PageSize - 1) NVARCHAR(100))
CAST (''&Parameter'' NVARCHAR(100))'
when i apply...
May 29, 2009 at 9:37 pm
Thanx saurabh.dwivedy
The code is dynamic...
Occurence of CAST is not Known..... it may occur 100 times or 0 times
and the Variables inside the cast also not known...
and the code is...
May 27, 2009 at 9:21 pm
HI davidandrews13
its different me for also
when i execute select * from [User] it displays 16153rows in right bottom corner of Result Grid
If go through the Table properties
its...
May 27, 2009 at 5:55 am
Viewing 15 posts - 46 through 60 (of 72 total)