Rohit Alladi

I am a seasoned Senior Engineer with over 12 years of Enterprise software experience in the industry, including extensive work with Fortune 500 companies.
Demonstrating versatility and expertise across various technological domains, I have a proven track record in building cloud-native applications(Salesforce), Application Solution Design & development,
developing DevOps processes, engaging with AI and machine learning.
My comprehensive technical skill set, combined with the leadership and team-motivation abilities, have facilitated the delivery of high-quality software solutions.
This has significantly contributed to the advancement of the technology sector and the professional development of technologists under my mentorship throughout my career.
  • Skills: Salesforce, CRM, AWS, Python, Machine Learning

Technical Article

Creating a CSV Parser in Apex

Salesforce supports the conversion of only csv files utilizing Apex. However if you use their LWC - js platform that provides wide options to bring in libraries to parse all kinds of file types. Here in this script i would be providing basic idea of functions utilizing the parsing logic along with options to iterate […]

5 (1)

You rated this post out of 5. Change rating

2024-05-21

8,099 reads

Blogs

Monday Monitor Tips: Tracking The Cost of Instances

By

One of the things that I’ve been asked in every operations situation is what...

Social Anxiety and Events Like the PASS Summit

By

If you are an introvert like me, events like the PASS Summit can call...

Thoughts on AI Data Infrastructure Field Day #1

By

On October 2nd and 3rd, I took part in an amazing event called AI...

Read the latest Blogs

Forums

SSIS Package Consuming Excessive Disk Space on Local Drive (C:)

By abdalah.mehdoini

Hello everyone, I’ve developed an SSIS process to compare two relatively large tables. When...

Building Pivot from SSIS with growing list of Month Columns

By Reh23

Good afternoon, I have an SSIS package which loads raw records into a sheet...

Visit the forum

Question of the Day

Comparing Images

I am building an ETL process between these tables in SQL Server 2022 set to 160 compatibility level:

CREATE TABLE Image_Staging
( imageid     INT NOT NULL CONSTRAINT Image_StagingPK PRIMARY KEY
, imagestatus TINYINT
, imagebinary IMAGE);
GO

CREATE TABLE Images
( imageid       INT NOT NULL CONSTRAINT ImagesPK PRIMARY KEY
, imagestatus   TINYINT
, imagemodified DATETIME
, imagebinary   IMAGE);
GO
I want to run this query to check if the images already loaded exist. This will help me decide if I need to insert or update an image. What happens with this query?
SELECT i.imageid
FROM
  dbo.Image_Staging AS ist
  INNER JOIN dbo.Images AS i
    ON ist.imagebinary = i.imagebinary;

See possible answers