- Developing and administering packages since 2007 in SQL Server 2000 through 2012.
- Upgrading SQL 2000 DTS packages to SQL 2005 and higher.
- Used SQL, Oracle, XML, CSV, SharePoint Lists and other sources for inputs/outputs in SSIS packages.
- I have extensive experience loading data to Oracle databases using SSIS Packages as well.
Friday, April 25, 2014
SSIS Consulting Services
Friday, March 28, 2014
Remote DBA Services
- Administration and Maintenance Services
- Troubleshooting, optimization and performance improvements
- Database Development
- Business Intelligence, including:
- SQL Server Reporting Services (SSRS),
- SQL Server Integration Services (SSIS)
- SQL Server Analysis Services (SSAS)
- Support Services
- High Availability Services
- Clustering
- Mirroring
- Always On
- Installation/Upgrades/Moves/Decommissioning
Saturday, May 5, 2012
Oracle DBA Tracking Center
Once installed, all you have to do is enter the Oracle instance or database. This tool does the rest!
Here is the ETL in SSIS:
There are two reports available:
The first is the “Applications” report that shows all applications and the related database and type, development or production as well as server.
The second report shows the detailed database information. The parameters asks for application and type, but defaults to all.
Thursday, March 8, 2012
Consulting Services
- SQL Server Database administration and Data Warehouses.
- · Microsoft:
- · SAP:
Thursday, October 6, 2011
Business Objects Enterprise Timeout
Friday, September 2, 2011
Crystal Reports in JobBOSS
- Have Crystal Reports at the site. It is expensive to have Crystal as I know, but you will save time in the long run to make the investment and to have it. If you know what you want, you can probably get away with the trial version, but only have 30 days to use it.
- Know what you want reported. I deciphered the SQL from some of the existing reports by looking at the “(reportname)_rpt.htm” files on the JobBOSS server, then created a new report. JobBOSS support can share with you a schema of your tables. From there, decide what you want to report and bring in those tables through the “database expert” in Crystal. Drag and drop the fields into the report. Save it to the “User Defined” section of reporting in JobBOSS.
- Have some basic reporting knowledge. Even with little reporting experience, with dragging and dropping, you will be able to quickly assemble a Crystal report. Snag a Crystal reports book or find one online.
- Call me, I can help! Contact me through my company’s site at http://www.afterhourscoders.com.
Wednesday, August 24, 2011
Getting the E-mail name from Windows Active Directory (AD) code
Getting the E-mail name from Windows Active Directory (AD) code.
Recently I needed to get the e-mail address for a person to be outputted on a SSRS report. The user table did not have the actual address and the name would not be possible to concatenate somehow. What did I have? It was only the long Active Directory (AD) data. How can I parse through this to get the name and concatenate on the address for this report? We will want to use T-SQL to extract the “CN” which stands for “Common Names”.
Please walk through this example with me!
Say you have the field “distinguished Name” in your table with:
DistinguishedName
------------------------
CN=joe.smith,OU=factory,OU=Email,DC=companynet,DC=company,DC=com
The code you can use to extract ”joe.smith” and concatenate ‘@company.com” is:
SELECT SUBSTRING((LEFT(U.DistinguishedName, CHARINDEX(',', U.DistinguishedName + ',') -1)),4,LEN((LEFT(U.DistinguishedName, CHARINDEX(',', U.DistinguishedName + ',') -1)))) + '@company.com’ AS "Email Address"
FROM (table)
Your result will equal:
Email Address
-----------------
joe.smith@company.com





