Viewing 7 posts - 1 through 7 (of 7 total)
anthony.green (10/22/2015)
Just uncomment a particular string at the top you want to search
--declare @searchstring varchar(100) = '\\Dpo-doctest1\Citibank Files\Citibank\07-JULY\20150703\C12'
--declare @searchstring varchar(100) = '\\Dpo-doctest1\Citibank Files\Citibank\07-JULY\20150703\C12\29P'
--declare...
October 22, 2015 at 4:58 am
anthony.green (10/22/2015)
Something like this
create table #TRFile (filepath varchar(100))
insert into #TRFile ...
October 22, 2015 at 3:16 am
Dana Medley (7/22/2013)
SELECT 1234 AS '@TranID', 'ABC123' AS '@OrderNum',
'MY' AS 'Current_Location',
(
SELECT 'OK' AS '@Code', 'FINE' AS '@Reason_Code', 'KUU1234' AS 'Remark'
FOR XML PATH('Status'), TYPE
) AS...
August 1, 2013 at 8:09 pm
is that have any others method?
eg: convert or cast?
because i involve many changes ....
January 28, 2010 at 7:05 am
shanu.hoosen (1/20/2010)
declare @s-2 nvarchar(200)
set @s-2= '[Q1 ''10] ,[Q2 ''10] ,[Q3 ''10] ,[Q4 ''10] '
select @s-2
--this is the result
[Q1 '10] ,[Q2 '10]...
January 28, 2010 at 12:21 am
knockyo (1/20/2010)
shanu.hoosen (1/19/2010)
will this not work?
declare @selectColumns nvarchar(400)
declare @W nvarchar(200)
set @selectColumns ='[Q1 ''10] ,[Q2 ''10] ,[Q3 ''10] ...
January 20, 2010 at 2:02 am
shanu.hoosen (1/19/2010)
will this not work?
declare @selectColumns nvarchar(400)
declare @W nvarchar(200)
set @selectColumns ='[Q1 ''10] ,[Q2 ''10] ,[Q3 ''10] ...
January 20, 2010 at 1:21 am
Viewing 7 posts - 1 through 7 (of 7 total)