Showing posts with label MSBI jobs. Show all posts
Showing posts with label MSBI jobs. Show all posts

Friday, August 28, 2015

New MSBI-SSIS batch starts on 2nd SEPT 2015

HI Team,

I am going to start a new MSBI -SSIS batch on sept 2nd 7-8 AM ISD.let me know if you are interested over a mail nriit.srinu@hotmail.com.

Thanks
Admin

Tuesday, July 28, 2015

T-SQL Developer openings @ Randstand-HYD

Randstand is looking for T-SQL Developer for one of our internal client. Please find the below details

Designation: Transact (T)-SQL Developer
Experience :2.6 to 5 yrs

Positions :05
Location : Hyderabad
Hire Type: Contract to hire

Responsibilities:
* Communicate effectively with all stakeholders to collect and understand requirements that aid in building right solutions
* Ability to write SQL queries.
* Ability to design the procedure, views & tables
* Understand business data and develop required skills to present data for business intelligence
* Nurture & Mentor junior talent in team.
* Need good co-ordination with in the team.

Knowledge/Skills/Abilities:
* Ability to understand and write SQL for complex logics
* Experience in troubleshooting highly complex technical problems.
* Good Experience on MS SQL server
* Ability to identify areas of improvement in physical design/SQL Queries to achieve performance and stability.
* Good experience in database Design and performance.
* Have exposure to Agile methodologies. Ideal candidate has worked in projects delivered in Agile fashion is an added advantage.
* Exposure towards source control tools like Git and/or Bitbucket is an added advantage.

If you are interested please share your updated profile to ravikumar.t@randstad.in

Regards.,
SQL SRINIVAS

Openings for SQL developer in a MNC(Pune)-MSBI(SSIS,SSRS)

Greetings from Datamatics!!

Needed Any ID Proof scan copy with the below details

The candidate will be Permanent with Datamatics Software solution A level 5 company ISO 9001:2000, and ISMS BS7799 certifications and will be working on our client project in client place.

Skill: SQl Developer(SSIS,SSRS)
Exp :- 1-3years
Work location: Pune

Please find the Job Detail:
Position :-
Work Location:-
Experience:-
Job Description :
Note : if your selected need to join in 15days if its possible than apply for the above position
Submittal Application form :

(1) Name(With Full Form of all Initials in your name):
(2) This position is a permanent Position with Datamatics and you will be working on the payroll of Datamatics for our client (yes/No):
(3) Current Location :
(4) Are you ready for relocation to(yes/No): .If yes which are your 3 preferred locations
(5) Are you working as a permanent employee or a contractor :
(6) Notice period :
(7) Is Notice period Negotiable (yes/No):
(8) Current CTC:
(9) Expected CTC :
(10) Total years of experience:
(11) Relevant Years of experience :
(12) Availability for F2F Interview :
(13) Date Of Birth:
(14) Passport (yes/No) :
(15) Alternate Contact No:
(16) Pancard Number :

Send All the above details to yamini.arani@datamatics.com

Thanks
SQL SRINIVAS

Engineers - MSBI Stack


Experience required for the Job: 2 - 5 years
Annual Salary of the Job: 0.0 - 15.0 Lacs
Job Location: Hyderabad

Dear Description:

Strong exp in MS BI Stack
Specific exp in tsql and ssis

Do go through www.imaginea.com and www.pramati.com
Contact Person:  rupa
Emai id: rupa.b@pramati.com

Thanks
SQL SRINIVAS

Saturday, June 20, 2015

Priting a pyramid by using TSQL

Hi Team,

I have been observed that many of the interviews people are asking printing the pyramid like below by using SQL server.

 
So I am giving a script to that one

DECLARE @lclMaxLevel INT=5
DECLARE @lclPrintCount INT =0

WHILE @lclMaxLevel > 0
  BEGIN
      PRINT Space(@lclMaxLevel)
            + Replicate('*', @lclPrintCount)
            + Replicate('*', @lclPrintCount+1)

      SET @lclMaxLevel=@lclMaxLevel - 1
      SET @lclPrintCount=@lclPrintCount + 1
  END

Output as follows:

Let me know if you have any doubts on this.

Thanks
SQL Srinivas

Wednesday, June 10, 2015

***New MS SQL SERVER Development Batch from 16th June***

Team,

We are going to start a new batch for MS SQL SERVER development(TSQL &TSQLProgramming) on 16th June at 10-11 PM ISD.

Please find the below Course content

MS SQL SERVER DEVELOPMENT COURSE CONTENT

let your friends/relatives/colleagues, near and  dear know if any one are in need the same.

Thanks
ADMIN

Sunday, January 18, 2015

Indexs in SQL SERVER

INDEXES

Before discussing Indexes understand the below scenarios where we used to use daily operations.

Scenario1

create table employee1
(
eid int primary key,
ename varchar(20)
)

we created a table with eid as primary key and ename columns.

insert into employee1 values(100,'srinivas')
--successfully inserted a record

select * from employee1

insert into employee1 values(80,'santosh')
--record inserted, now

select * from employee1 
--will return as shown below

Why the records came in Ascending order ?

see the below two inserts 

insert into employee1 values(105,'Ravi')

insert into employee1 values(76,'Ravi')

Now

select * from employee1 
--will return as shown below


All the records are displaying in ascending order no all the records saving in ascending order in database.

Did you observe this behavior anytime ?

Scenario2:

create table employee2
(
eid int,
ename varchar(20)
)

I created the same table with out primary key on eid

insert into employee2 values(100,'srinivas'),(80,'santosh'),(105,'Ravi'),(76,'Ravi')

and inserted the same records now see the how the data will be stored on the table


is the data displaying in ascending order ?,the data is coming as we stored.

Did any time observed these two behaviours what is the reason?

Now understand the concept of Index first.

Indexes will be used for faster retrieval of data.In SQL Server we have two types of indexes are there as follows

1.Clustered Index (or) Unique Clustered Index:

1.We can have only one clustered  index.
2.When ever you create a primary key, clustered index automatically  you will get on that collumn.

with primary key ---->clustered index
with clustered index ---->we won't get primary key

3.If you have a clustered index/primary key  physical order of records in table will change asc/desc


2. non clustered index (or)  non unique clustered index:


1.we can have 249 non clustred  index.
2.when ever you create a unique key non clustered index automatically u will get  on that column

with unique ---->will get non clustered index
with non clustered index ---->we won't get unique key

3.non clustered index will not change the physical order but display the records in asc r desc order.
--------------------------------------------------------------------------------------------------------------------------
1.Creating an index:

create [unique][clustered/non clustered]
index <index_name> on 
<table_name>(column_name [desc])

2.Droping  an index:

drop index <table_name>.<index_name>

creating a clustered index:

create table employee3
(
eid int,
ename varchar(20),
sal int
)

insert into employee3 values(105,'ramesh',9000),(103,'akhil',8000),(101,'ram',9700),(102,'rahul',7000),(104,'ajay',8500)

select * from employee3
you will get the data as follows



Now I am creating a clustered index on eid as follows

create clustered index myindex1 on employee3(eid)

Now 
select * from employee3 will gets the data as follows


all the data is came in ascending order based on eid because we have a clustered index on eid.It changes the physical structure of a original data.

Now I want to drop the index

drop index employee3.myindex1
and now

select * from employee3


we got the same data even after droppping the index on eid because it changed the physical structure of the records. 

Now we are creating a clustered index on sal

create clustered index myindex1 on employee3(sal)

select * from employee3

you will get the data as follows with sal ascending order.



Now we already having an index on sal and trying to create another index on eid as follows

create clustered index myindex2 on employee3(eid)

you will get the error as follows



as "Msg 1902, Level 16, State 3, Line 2
Cannot create more than one clustered index on table 'employee3'. Drop the existing clustered index 'myindex1' before creating another."

So you can't have more than one clustered index on a table if you want to keep more than one index use Non-clustered index.

Creating a Non-clustered index:
create table employee4
(
eid int,
ename varchar(20),
sal int
)

insert into employee4 values(105,'ramesh',9000),(103,'akhil',8000),(101,'ram',9700),
(102,'rahul',7000),(104,'ajay',8500)


select * from employee4 

you will get the data as follows


On employee4 table I am creating a non clustered index on eid as follows

create nonclustered index myindex2 on employee4(eid) include(ename,sal)

select * from employee4



Now you got the data in ascending order based on eid column because we have non clustered index on eid but it didnt change the physical order of records.

drop index employee4.myindex2

select * from employee4

we got the data in same order of how we insert.

Now I am creating non clustered index on all the three columns as follws

create nonclustered index myindex2 on employee4(eid) include(ename,sal)

create nonclustered index myindex3 on employee4(ename) include(eid,sal)

create nonclustered index myindex4 on employee4(sal) include(eid,ename)

select * from employee4


It displayed the records in ascending order based on sal.

Note:

****If we have number of non clustered indexs on what index basis you will get the data?
based on last index.

Now observe the below

select * from employee4 where sal>8000
we got the records in sal ascending order

on the same table

select * from employee4  where eid>100

we got the records in eid ascending order

If you have number of non clustered indexes and your select query contains where clause, on the column if we have an non clustered index we will get the data based on that index.


will continue with materilised view/indexed view.

Thanks
Srinivas
9059361460

Sunday, July 20, 2014

New MSBI batch starts from 23rd July2014

Hello Team,

We are going to start new MSBI start from 23rd July please find the below details.

Timings: 4.30-5.30AM ISD

Prerequitites :SQL Server 2012/2008R2/2008[tsql+tsql programming]

Module going to start:MSBI[SSAS]

For any queries contact us at gvkoltrainings@outlook.com

Thanks
GVKOnlineTrainings-Admin Team

Tuesday, July 15, 2014

Opening with ITC Infotech for the position of MSBI Developer-Kolkata‏


Experience required for the Job: 1 - 3 years
Job Location: Kolkata
Opening with ITC Infotech for the position of MSBI Developer-Kolkata

Job Description

1) 1 to 3 years of support and / or development experience in SQL 2008/2012
2) Good knowledge in SQL Query and Stored Procedure for enterprise level applications
3) Good working knowledge in MS excel
4) Working knowledge in SQL Server Database 2008, SQL Server BI Suite 2008 -specially SSIS & SSRS Package development,configuration and operation will be given preference
5) Good communication skills - both written and oral

Interested candidate should send the resume @ rupsa.das@itcinfotech.com, also mention the following details

Current CTC :

Expected CTC :

Notice Period :

DOB :

Education
.
:

Contact details : rupsa.das@itcinfotech.com

Thanks
GVK ONLINE TRAININGS-ADMIN