News and Information for the Data Integration community

July-August 2007

 

SAP related solutions

Sage related solutions


Data migration solutions

Weekly Webinar on xFusion. Register via email to:
info@softlabsco.com

Newsletter Unsubscribe

More Newsletters

Most Recent

June 2007

May 2007

April 2007

Mar 2007

Feb 2007

Jan 2007

Dec 2006

Nov 2006

New Features in SQL Server 2008

Mark your calendar. SQL Server 2008 will be released on Feb 17,

2008, along with Windows Server 2008 and Visual Studio 2008. In this article, I will describe some important development related features of SQL Server 2008.

Announcements

Latest happenings in xFusion and at Software Labs.

Did you know?


From the support desk

 
 

New Features in SQL Server 2008
Author: Dr. Pradeep Tapadiya

 

Mark your calendar. SQL Server 2008 will be released on Feb 17, 2008, along with Windows Server 2008 and Visual Studio 2008. In this article, I will describe some important development related features of SQL Server 2008.

New Data Types

  • DATE and TIME: These data types help you store date and time parts separately. A functionality that has been desired for a long time.

  • DATETIME2: Similar to DATETIME data type but with better accuracy. DATETIME is accurate to one thousandth of a second. DATETIME2 is accurate up to 100 nanoseconds.

  • DATETIMEOFFSET: This data type includes time zone offset from GMT, along with DATETIME value.

  • HIERARCHYID: This data type, along with a few new system methods, helps you store and query hierarchical data. Very interesting.

  • GEOMETRY and GEOGRAPHY: Helps you deal with spatial data structures.

Entity Data Model

SQL Server 2008 gives you the ability to model complex relationships (such as customers, orders, etc.) as business entities. This supplements the traditional model of using tables, that is, the result-set of rows and columns.

Language Integrated Queries (LINQ)

This is more of an enhancement in .NET but deserves special mention here. LINQ is an extension to .NET languages such as C# and VB.NET for managing relational data as objects. Be prepared to see many new articles on this technology.

MERGE Statement

This command provides you the ability to INSERT data if it does not exist or UPDATE data if does exist, all in a single statement.

Table Value Parameter

You now have the ability to create variables that are of "table" type and pass them to stored procedures.

Overall, many enhancements have also been made in the area of security, auditing, reliability, performance, reporting, etc. In a future article, I will cover enhancements in reporting. For those interested, Microsoft has acquired data visualization capabilities from Dundas software.

Software Labs Teams with Gartner to Increase Customer Benefits
Working with Gartner and its experienced analysts, Software Labs will build on existing customer success with the xFusion Studio software suite. This new relationship will help improve current and future software features to reflect industry requirements and improve customer benefits.

New Partners
We are happy to announce the addition of Intacct Business Consulting (Australia) , CCG International (USA) , and Net Standard (USA) to our growing list of partners. xFusion Studio will help them to migrate customers to new business applications and streamline many data management processes.

Fast Migration Services for SAP
We now offer the quickest way to migrate QuickBooks customers to SAP Business One. Using our xFusion Studio software and proprietary methodology this new service can complete a QuickBooks migration to SAP Business One in less than one hour! To learn more contact Software Labs at info@softlabsco.com or call 916-773-6272 ext. 130

Did you know that creating any data source backup to SQL server is just a click away in xFusion studio? Read more…

Support Questions:

Dear Support,

The data I am working with contains numeric values separated by dashes. Here are some examples:

 

1-2

1-23-45

1000-2000-3000

I need to split each value at the last dash. For the above examples, I expect to get the following output

 

1 2

1-23 45

1000-2000 3000

How can I do that?

Thanks

Hi,

You can use function RegexParse. This function identifies values based on the pattern that you specified. For each pattern, you can specify the output column name. For your case, here is the pattern:

 

RegexParse('^(?<FirstPart>.*)-(?<LastPart>[0-9]+)$', [column])

Hope this helps.

Thank you,

Support

 


Software Labs, Inc. 1225 Pleasant Grove Blvd. #100, Roseville CA 95768, USA
ph: 1-916-773-6272 fax: 916-773-6281 web: http://www.softlabsco.com email: info@softlabsco.com
unsubscribe via email: unsubscribe@softlabsco.com unsubscribe via web: click here