Click here to Skip to main content
15,885,435 members
Home / Discussions / Database
   

Database

 
AnswerRe: accessing ssrs2008 reports remotely with my systems IP without IIS Pin
Mycroft Holmes4-Dec-10 11:45
professionalMycroft Holmes4-Dec-10 11:45 
GeneralRe: accessing ssrs2008 reports remotely with my systems IP without IIS Pin
vinu.11116-Dec-10 20:15
vinu.11116-Dec-10 20:15 
QuestionRemove Extra Whitespace between Words -- But Leave One Space in a Certain Location Pin
Brian C Hart2-Dec-10 4:23
professionalBrian C Hart2-Dec-10 4:23 
AnswerRe: Remove Extra Whitespace between Words -- But Leave One Space in a Certain Location Pin
Luc Pattyn2-Dec-10 4:44
sitebuilderLuc Pattyn2-Dec-10 4:44 
GeneralRe: Remove Extra Whitespace between Words -- But Leave One Space in a Certain Location Pin
Scubapro2-Dec-10 5:17
Scubapro2-Dec-10 5:17 
AnswerRe: Remove Extra Whitespace between Words -- But Leave One Space in a Certain Location Pin
Scubapro2-Dec-10 5:05
Scubapro2-Dec-10 5:05 
GeneralRe: Remove Extra Whitespace between Words -- But Leave One Space in a Certain Location Pin
NeverHeardOfMe4-Dec-10 0:42
NeverHeardOfMe4-Dec-10 0:42 
AnswerRe: Remove Extra Whitespace between Words -- But Leave One Space in a Certain Location PinPopular
T M Gray2-Dec-10 11:38
T M Gray2-Dec-10 11:38 
Turn it into two columns and then you can format it however you want

DECLARE @city varchar(20)
Set @city= 'Portland OR'
select
SUBSTRING(@city, 1,CHARINDEX(' ', @city)) as [city],
REVERSE((SUBSTRING(REVERSE(@city),1,CHARINDEX(' ', REVERSE(@city))))) as [state]

This assumes no trailing spaces after OR. If there are add some TRIM() in there.
AnswerRe: Remove Extra Whitespace between Words -- But Leave One Space in a Certain Location Pin
Hiren solanki3-Dec-10 2:19
Hiren solanki3-Dec-10 2:19 
GeneralRe: Remove Extra Whitespace between Words -- But Leave One Space in a Certain Location Pin
NeverHeardOfMe4-Dec-10 0:38
NeverHeardOfMe4-Dec-10 0:38 
Questionunable to start the SQL Full Text Search Service from SQL Server Configuration Manager Pin
MahaKh1-Dec-10 20:07
MahaKh1-Dec-10 20:07 
AnswerRe: unable to start the SQL Full Text Search Service from SQL Server Configuration Manager Pin
Pete O'Hanlon1-Dec-10 23:49
mvePete O'Hanlon1-Dec-10 23:49 
QuestionRetrieving the new defalt value of a uniqueidentifier Pin
henry19511-Dec-10 14:41
henry19511-Dec-10 14:41 
AnswerRe: Retrieving the new defalt value of a uniqueidentifier PinPopular
Mycroft Holmes1-Dec-10 15:44
professionalMycroft Holmes1-Dec-10 15:44 
AnswerRe: Retrieving the new defalt value of a uniqueidentifier Pin
PIEBALDconsult4-Dec-10 4:19
mvePIEBALDconsult4-Dec-10 4:19 
GeneralRe: Retrieving the new defalt value of a uniqueidentifier Pin
henry19514-Dec-10 5:16
henry19514-Dec-10 5:16 
GeneralRe: Retrieving the new defalt value of a uniqueidentifier Pin
PIEBALDconsult4-Dec-10 8:26
mvePIEBALDconsult4-Dec-10 8:26 
GeneralRe: Retrieving the new defalt value of a uniqueidentifier Pin
Joe DiNatale6-Dec-10 11:08
Joe DiNatale6-Dec-10 11:08 
GeneralRe: Retrieving the new defalt value of a uniqueidentifier Pin
Mycroft Holmes4-Dec-10 11:42
professionalMycroft Holmes4-Dec-10 11:42 
GeneralRe: Retrieving the new defalt value of a uniqueidentifier Pin
PIEBALDconsult4-Dec-10 12:53
mvePIEBALDconsult4-Dec-10 12:53 
GeneralRe: Retrieving the new defalt value of a uniqueidentifier Pin
Mycroft Holmes4-Dec-10 14:45
professionalMycroft Holmes4-Dec-10 14:45 
QuestionSQL database works on IIS but not in client machines Pin
saud_a_k30-Nov-10 20:45
saud_a_k30-Nov-10 20:45 
AnswerRe: SQL database works on IIS but not in client machines Pin
Rajesh Anuhya30-Nov-10 22:31
professionalRajesh Anuhya30-Nov-10 22:31 
GeneralRe: SQL database works on IIS but not in client machines Pin
saud_a_k1-Dec-10 0:35
saud_a_k1-Dec-10 0:35 
GeneralRe: SQL database works on IIS but not in client machines Pin
Eddy Vluggen1-Dec-10 7:03
professionalEddy Vluggen1-Dec-10 7:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.