Viewing 15 posts - 16 through 30 (of 37 total)
Dim...January 24, 2017 at 2:44 am
Thanks sqlblues.
I had figured out, if I change the query as below, the list has become complete.
select REPLACE(part_code,'-','#'),part_code from s_stkmst
where REPLACE(part_code,'-','#')>= REPLACE('RYP1836-K','-','#') AND REPLACE(part_code,'-','#')<=REPLACE('RYP1836D-K1','-','#')
order by part_code
October 8, 2013 at 4:28 am
sqlblues (10/7/2013)
drop table #s_stkmst
create table...
October 7, 2013 at 2:30 am
Seems like this works for me so far,
Select part_code, REPLACE(part_code,'-','#')
from A_Test
WHERE REPLACE(part_code,'-','#') COLLATE SQL_Latin1_General_Cp437_BIN >= REPLACE('RKS0516-W-Z','-','#') COLLATE SQL_Latin1_General_Cp437_BIN
ORDER BY REPLACE(part_code,'-','#') collate SQL_Latin1_General_Cp437_BIN
Thanks John
July 26, 2013 at 8:59 am
John, sorry for the confusion. I was trying many ways and mixed up the original code page I posted initially. Thanks for your tips and I will try it.
July 26, 2013 at 8:28 am
John Mitchell-245523 (7/25/2013)
July 25, 2013 at 9:21 am
John Mitchell-245523 (7/25/2013)
July 25, 2013 at 8:46 am
John Mitchell-245523 (7/25/2013)
(1) Find a collation...
July 25, 2013 at 2:41 am
Hi Gail,
'Distinct' result is needed. Please refer to my code (revised) below and one attached file for imvolved tables and indexes.
Thank you,
SELECT DISTINCT
w.workorderno, w.date,...
November 20, 2009 at 2:21 am
You are right, can't open it in IE. But, if I click it in Firefox then it will direct me to use Sql Management tool to open it. I also...
November 20, 2009 at 1:17 am
Can u try to open this one?
(I can open it by sql2005.)
TQ
November 20, 2009 at 12:34 am
Hi Bru and Jason, thank you for your advice. Follow your advice, I will look for my missing indexes now. At the meantime, i attached my EP herein for your...
November 20, 2009 at 12:13 am
Hi Vidhya, thanks for your fast reply.
Now I can list out the directory content. I gave up using manual backup from SM at this moment because I am still unable...
July 1, 2008 at 11:20 pm
This is the command as your advice was tried, (I enabled xp_cmdshell at the Server Surface Configuration and then issue this command)
EXEC master.dbo.xp_cmdshell 'C:\SQL2k5_Data'
and the result shows 'C:\SQL2k5_Data' is not...
July 1, 2008 at 10:40 pm
Hi all,
In addition to Sunil's question, I am curious how to set the DB security to prevent being restored to other SQL Server by using a new 'sa'?
I meant,...
July 1, 2008 at 3:04 am
Viewing 15 posts - 16 through 30 (of 37 total)