Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL Server 2000 equivalent to STRTRAN() in vfp
Message
From
31/10/2006 17:06:30
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01165955
Message ID:
01165970
Views:
14
Now, how to with a text field type in SQLServer 2000? Use cast()? I guess I cannot use local variables with text types?


>You were too focused on VFP side, I think.
>That happens to me all the time (especially when I put [;] as continuous line in my SQLEXEC() strings)
>:-)))
>
>
>>Sheesh! What was I thinking????
>>
>>Thanks so much Borislav!
>>
>>
>>select * from agency
>>DECLARE @lcOldString varchar(200)
>>SET @lcOldString = 'HIGH POINT'
>>DECLARE @lcNewString varchar(200)
>>SET @lcNewString = 'TRACY'
>>update agency set agencyname = REPLACE(agencyname,@lcOldString,@lcNewString)
>>select * from agency
>>
>>
>>>
>>>DECLARE @lcstring varchar(200)
>>>DECLARE @lcnewstring varchar(200)
>>>select * from agency
>>>SET @lcstring = 'HIGH POINT'
>>>SET @lcnewstring = 'TRACY'
>>>update agency set agencyname = REPLACE(agencyname,@lcstring,@lcnewstring)
>>>select * from agency
>>>
>>>
>>>
>>>
>>>>OK, in SQL Management Studio, how do I set the vars? I have reached a brain cramp and can't believe I cannot think of it. it doesn't like this:
>>>>
>>>>
>>>>select * from agency
>>>>SET	lcstring = 'HIGH POINT'
>>>>SET lcnewstring = 'TRACY'
>>>>update agency set agencyname = REPLACE(agencyname,lcstring,lcnewstring)
>>>>select * from agency
>>>>
>>>>or
>>>>
>>>>select * from agency
>>>>DECLARE lcstring = 'HIGH POINT'
>>>>DECLARE lcnewstring = 'TRACY'
>>>>update agency set agencyname = REPLACE(agencyname,lcstring,lcnewstring)
>>>>select * from agency
>>>>
>>>>
>>>>>>
>>>>>>lcoldstring = 'old value'
>>>>>>lcnewstring = 'new value'
>>>>>>UPDATE vhstatus SET vhnote = STRTRAN(vhnote,lcoldstring,lcnewstring)
>>>>>>
>>>>>>
>>>>>>Any idea how to do that in SQLServer 2000 (Not vfp will be using sqlexec())?
>>>>>
>>>>>lcoldstring = 'old value'
>>>>>lcnewstring = 'new value'
>>>>>UPDATE vhstatus SET vhnote = REPLACE(vhnote,lcoldstring,lcnewstring)
>>>>>
.·*´¨)
.·`TCH
(..·*

010000110101001101101000011000010111001001110000010011110111001001000010011101010111001101110100
"When the debate is lost, slander becomes the tool of the loser." - Socrates
Vita contingit, Vive cum eo. (Life Happens, Live With it.)
"Life is not measured by the number of breaths we take, but by the moments that take our breath away." -- author unknown
"De omnibus dubitandum"
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform