Drop Table
Support Forum for database administrators and web based access to important newsgroups related to databasesHello, I have been placed in charge of migrating an old access based database over to sql server 7.0. So far, I have imported all the tables into sql server, but now I have come across the issue of needing to split a string variable. For instance, in the old database, the variable for name was such that it included both first and last names, whereas in the new database there are seperate entities for first and last name. I know that there is a way to write a script that will separate out the two strings by using the "space" in between the name, but I'm unfamiliar how to do this. Any suggestions? Thanks! Rick
Post Follow-up to this message(RSummersJr@gmail.com) writes: > I have been placed in charge of migrating an old access based database > over to sql server 7.0. So far, I have imported all the tables into > sql server, but now I have come across the issue of needing to split a > string variable. For instance, in the old database, the variable for > name was such that it included both first and last names, whereas in > the new database there are seperate entities for first and last name. > I know that there is a way to write a script that will separate out the > two strings by using the "space" in between the name, but I'm > unfamiliar how to do this. Any suggestions? Thanks! I suggest that you look up "Functions" in Books Online, and have a look at the available string functions. String maninpulation is not a strong point in T-SQL, but there are some functions. Most commonly used for this task are substring() and charindex(). -- Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se Books Online for SQL Server 2005 at http://www.microsoft.com/technet/pr...oads/books.mspx Books Online for SQL Server 2000 at http://www.microsoft.com/sql/prodin...ions/books.mspx
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread