Viewing 15 posts - 151 through 165 (of 249 total)
See: https://drive.google.com/file/d/13NhT_wx0EQl2GBP1JhthqksjU0phgSFz/view?usp=sharing
Would like to denormalize this data model.
March 16, 2022 at 4:57 pm
I changed the schema to allow NOT NULL in my matching columns. Still i get the same output.
March 4, 2022 at 1:20 pm
Duplicates involves all columns. I would like to add an index column to identify each row.
March 3, 2022 at 5:15 pm
First i would like to able to have an unique identifier. Is the unique index the way to go?
March 3, 2022 at 10:47 am
I tried removing spaces and converted to uppercase case characters, still no difference in figures of match and no match.
February 23, 2022 at 12:07 pm
My data source is an excel file which i imported to sql server.
February 23, 2022 at 11:26 am
The two columns that match on both tables contains duplicate values, so i cant join on that as a primary key-secondary key relationship. That is the issue.
USE [PPECB]
GO
/****** Object: Table...
February 10, 2022 at 10:47 am
fbocode contains duplicates and the id column doesn't match to build a relationship. Im starting to think that this particular table is not suppose to be in the model. It...
February 3, 2022 at 2:03 pm
Please see:
CREATE TABLE [dbo].[Order](
[uid] [bigint] NULL,
[delivery_address] [nvarchar](256) NULL,
[complex_unit_no] [nvarchar](200) NULL,
[delivery_latitude] [nvarchar](20) NULL,
[delivery_longitude] [nvarchar](20) NULL,
[store_uid] [bigint] NULL,
[app_version] [nvarchar](10) NULL,
[delivery_fee] [nvarchar](10) NULL,
[amended_delivery_fee] [nvarchar](10) NULL,
[bottles_fee] [nvarchar](10) NULL,
[amended_bottles_fee] [nvarchar](10) NULL,
[promo_code] [nvarchar](50) NULL,
[promo_discount] [nvarchar](10) NULL,
[promo_discount_amount]...
February 2, 2022 at 11:00 am
I could connect ODBC using this string"Driver={Mysql ODBC 8.0 ANSI Driver};Server=Localhost;Database=Marketing;UID=Marketing;PWD=Musica123;" now i am getting this error:
TITLE: Microsoft Visual Studio
------------------------------
Pipeline component has returned HRESULT error code 0xC0208457 from a method...
November 27, 2021 at 1:10 pm
Getting errors when using the odbc string connection:
When i use the MYSQL connector, i am getting this messages below. I do create the table with mysql code.
November 27, 2021 at 12:12 pm
Only the three tables given.
USE [Edu]
GO
/****** Object: Table [dbo].[Opp...] Script Date: 2021/11/26 16:15:10 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Opp...](
[id] [float] NULL,
[contact_id] [float] NULL,
[created_at] [nvarchar](255) NULL,
[fields] [nvarchar](255) NULL,
[first_activity_at] [nvarchar](255) NULL,
[first_assigned_at]...
November 26, 2021 at 2:27 pm
USE [Edu]
GO
/****** Object: Table [dbo].[Products] Script Date: 2021/11/26 15:16:50 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Products](
[id] [varchar](50) NULL,
[created_at] [varchar](50) NULL,
[description] [varchar](50) NULL,
[name] [varchar](50) NULL,
[updated_at] [varchar](50) NULL
) ON [PRIMARY]
GO
USE [Edu]
GO
/******...
November 26, 2021 at 1:21 pm
See zip file.
November 25, 2021 at 8:40 pm
Viewing 15 posts - 151 through 165 (of 249 total)