Bulk load and parse XML file into SQL database tables

There are many ways to ETL the XML files, you can using c#(or any other language you’d like to) code parse it based on the schema and bulk insert into database, or import it into excel then load it into tables, or using SSIS, whatever you like and you feel you are comfortable with. And… Continue reading Bulk load and parse XML file into SQL database tables

Setup Infor SyteLine 8.03 Customer Portal–By M. from “Technomancy for the masses”

This blog is from —http://www.ponjavic.com/wordpress/2014/09/16/setup-infor-syteline-8-03-customer-portal/#comments thanks M. Setup Infor SyteLine 8.03 Customer Portal mSeptember 16, 2014 Infor 1 Comment Below post outlines how to setup and configure Infor SyteLine 8.03.20 customer and vendor portals. SQL Account Configuration We’ll be setting up and configuring portals on a dedicated server running Microsoft Windows Server Standard 2008 R2.… Continue reading Setup Infor SyteLine 8.03 Customer Portal–By M. from “Technomancy for the masses”

SAS Practice import File

This practice is aiming to help the very beginners to get an idea how to import file without using wizard. I use SAS Enterprise Guide onDemand for academics, it´s free and you can download it through the official website: http://www.sas.com/en_us/industry/higher-education/on-demand-for-academics.html Okay, if you want to import file through code, you need either a local server(while it’s… Continue reading SAS Practice import File

SQL DATE/TIME FUNCTION QUERIES:

  Add days/months/years to a given datetime Add days to a given days: SELECT DATEADD(DAY, -1, ‘2015-11-30’) SELECT DATEADD(DAY, 1, GETDATE()) Same logic for add years or month MONTH: SELECT DATEADD(MONTH, 1, GETDATE()) YEAR:  SELECT DATEADD(YEAR, 1, GETDATE()) 2.Displaying date in different formats. default: SELECT CONVERT(char(20),GETDATE(),0) USA mm/dd/yyyy: SELECT CONVERT(char(20),GETDATE(),101)   SELECT CONVERT(char(20),GETDATE(),1) mm-dd-yyyy :  SELECT… Continue reading SQL DATE/TIME FUNCTION QUERIES:

SSRS -render report by bat call RSS file and passing parameters to report

 I have several reports which already deployed, and I want to execute the reports without subscribe the report in report manager. Here I used batch file to call an rss file to execute a report with parameter.  my report name is TEST PARAMETER , I have two parameters in this report, one is ACCNT_CODE is… Continue reading SSRS -render report by bat call RSS file and passing parameters to report

SSRS report export text file with column name

When export report into txt file, column names are missing, it’s because column names will come as headers in the file.To make the columns name display in the file, simply make one small change go to directory: C:\Program Files\Microsoft SQL Server\MSRS{YourSQLServerVersion}.MSSQLSERVER\Reporting Services\ReportServer open the rsreporterver.config, and change it to <NoHeader>false<NoHeader>