Viewing 12 posts - 1 through 12 (of 12 total)
Hi you can do something like this.DECLARE @CT INT
SET @CT = (SELECT COUNT([pWholesalePrice]) FROM [dbo].[Products])
IF ISNULL(@Ct,0) > 0
BEGIN
--update
August 20, 2018 at 8:33 pm
This is purely hypothetical to see if it's possible to pass a table to a function created by the statement ;WITH
Is it not possible?
November 27, 2017 at 3:30 am
They're grouped
CREATE TABLE [dbo].[Title]( [ID] [int] NULL,
[Description] [varchar](50) NULL,
[Dept] [varchar](50) NULL
) ON [PRIMARY]
INSERT INTO [dbo].[Title]([ID],[Description])
VALUES(1,'Architect','IT')
INSERT INTO [dbo].[Title]([ID],[Description])
October 11, 2017 at 6:48 pm
This is just dummy data to show how I need the data displayed in 3 columns.
October 8, 2017 at 3:19 pm
It's not a good file and I need to filter the insert. Can you select certain columns and add a where clause?
October 1, 2017 at 8:32 pm
The flat file looks like this.
Field1 | Field2 |
October 1, 2017 at 4:06 pm
I followed this https://blogs.msdn.microsoft.com/cesardelatorre/2011/03/27/the-application-has-failed-to-start-because-its-side-by-side-configuration-is-incorrect-error-related-to-mmc-exe-programs-and-weird-cause-simple-solution/. This is what was in the C:\MySxSTrace.log :crazy:
Ð Ð ...
November 21, 2016 at 6:53 pm
Viewing 12 posts - 1 through 12 (of 12 total)