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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
luojiandan_bi
Helper I
Helper I

Power Query table to SQL Server by R script,why is that.0 extra

001.png

In Power Query Editor, the text string is: 123547126811

Why is the text string in SQL Server: 123547126811.0?

R Script: 

 

 

library(RODBC)
conn <- odbcDriverConnect("driver={SQL Server}; server=localhost;Database=**;uid=uid;pwd=password")
odbcClearError(conn)
sql="Delete T From
 (Select Row_Number() Over(Partition By cust_id order By cust_id) As RowNumber,* From tmp)T
 Where T.RowNumber > 1"
sqlSave(conn, dataset, tablename="tmp",rownames=FALSE, safer=FALSE, append=TRUE,fast=TRUE)
sqlQuery(conn,sql)  #delete duplicate data.
close(conn)

 

 

because The PowerQuery M code run twice,so run delete duplicate sql in R Script.

1 ACCEPTED SOLUTION
luojiandan_bi
Helper I
Helper I

using format function is ok:

 

dataset$cust_id <- format(dataset$cust_id)

 

View solution in original post

3 REPLIES 3
luojiandan_bi
Helper I
Helper I

using format function is ok:

 

dataset$cust_id <- format(dataset$cust_id)

 

v-kelly-msft
Community Support
Community Support

Hi @luojiandan_bi ,

 

Check whether the data type has been changed automatically in power query,if so,close it.

Check the reference below:

https://a4accounting.com.au/stop-power-query-from-automatically-setting-data-types/

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

 

 

luojiandan_bi
Helper I
Helper I

wait for helping online.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors