Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
vchevvuri
New Member

Data Load Stuck on Waiting for server

Hi, This is my code and I am trying to load the data but it is stuck on waiting for server 'servername'. Any help please?

 

let
// Connect to SQL Server database
Source = Sql.Database("**SERVERNAME**"),
// Access the 'archivedbookings' table
dbo_archivedbookings = Source{[Schema = "dbo", Item = "archivedbookings"]}[Data],
// Change data types for specific columns
#"Changed Type" = Table.TransformColumnTypes(
dbo_archivedbookings,
{
{"id", type text},
{"bookingId", type text},
{"pickupZoneId", type text},
{"completedByCompanyID", type text},
{"callLogId", type text},
{"vehicleId", type text},
{"driverId", type text}
}
),
// Change data types for additional columns
#"Changed Type1" = Table.TransformColumnTypes(
#"Changed Type",
{
{"viaZoneId1", type text},
{"viaZoneId2", type text},
{"viaZoneId3", type text},
{"destinationZoneId", type text},
{"companyId", type text},
{"customerId", type text}
}
),
// Keep only the 'typeOfBooking' column
#"Removed Other Columns" = Table.SelectColumns(#"Changed Type1", {"typeOfBooking"}),
// Replace null values with "BLANK" in the 'typeOfBooking' column
#"Replaced Null Values" = Table.ReplaceValue(
#"Removed Other Columns",
null,
"BLANK",
Replacer.ReplaceValue,
{"typeOfBooking"}
),
// Remove duplicate rows based on 'typeOfBooking'
#"Removed Duplicates" = Table.Distinct(#"Replaced Null Values"),
// Rename the 'typeOfBooking' column to 'Booking Type'
#"Renamed Columns" = Table.RenameColumns(
#"Removed Duplicates",
{{"typeOfBooking", "Booking Type"}}
)
in
#"Renamed Columns"

1 REPLY 1
watkinnc
Super User
Super User

I don't know, but I would change the query so that the first step is to select the single column that you are selecting, and save yourself a bunch of unnecessary steps and type changes.

 

--Nate

 


I’m usually answering from my phone, which means the results are visualized only in my mind. You’ll need to use my answer to know that it works—but it will work!!

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

Check out the October 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors