Viewing 15 posts - 166 through 180 (of 249 total)
USE [Skuss]
GO
/****** Object: Table [dbo].
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].
[Name] [varchar](50) NULL,
[LeaveTypeName] [varchar](50) NULL,
[DateFrom] [varchar](50) NULL,
[DateTo] [varchar](50) NULL,
[WithPayNoOfdays] [varchar](50) NULL,
[WoutPayNoOfDays] [varchar](50) NULL,
[LeaveStatus] [varchar](50) NULL,
[DateApprovedSupervisor]...
November 19, 2021 at 12:45 pm
USE SKUSS
SELECT DISTINCT COUNT (NAME) FROM [dbo].
USE SKUSS
SELECT COUNT (*) FROM [dbo].
November 19, 2021 at 9:41 am
Please provide a code with a sample parameter and one without?
October 4, 2021 at 9:25 am
CREATE TABLE [dbo].[CreditCardBalance](
[ID] [int] NOT NULL,
[CustomerID] [int] NULL,
[BalanceDate] [date] NULL,
[Balance] [decimal](18, 2) NULL
) ON [PRIMARY]
GO
CREATE TABLE [dbo].[BondBalance](
[ID] [int] NOT NULL,
[CustomerID] [int] NULL,
[BalanceDate] [date] NULL,
[Balance] [decimal](18, 2)...
October 4, 2021 at 9:11 am
See attached.
October 3, 2021 at 8:07 am
October 2, 2021 at 10:15 pm
Can you show me please what that code will look like?
October 2, 2021 at 6:36 pm
SSIS does not recognise any of my tables in the MySQL/Maria DB. That is the problem.
April 26, 2021 at 8:02 pm
Yes, I can complete thos process easily when i do it within a TSQL DB, but this is giving me errors in thise case, data types differences.
April 25, 2021 at 3:50 pm
Thank you for the assistance.
If i bring in Status, what would the syntax look like?
March 21, 2021 at 1:05 pm
Here is the data: https://drive.google.com/file/d/1LoaPrLoz_nlAD1wnrkNaEFQDYkVmKweB/view?usp=sharing
Yes, i know this is for mssql only. Any idea what the mysql equavalent look like?
March 19, 2021 at 9:18 pm
Yes, i know this is for mssql only. Any idea what the simialar code or equavalent for mysql is? data attached
March 19, 2021 at 9:15 pm
Here it is:
CREATE TABLE order
(
uid
int(10) unsigned NOT NULL AUTO_INCREMENT,
delivery_address
varchar(256) NOT NULL,
complex_unit_no
varchar(200) DEFAULT NULL,
delivery_latitude
varchar(20) NOT NULL,
delivery_longitude
varchar(20) NOT NULL,
store_uid
int(10) unsigned NOT NULL,
app_version
varchar(10) DEFAULT NULL,
delivery_fee
...
March 19, 2021 at 6:04 pm
Viewing 15 posts - 166 through 180 (of 249 total)