Viewing 11 posts - 1 through 11 (of 11 total)
Hello,
Here is the answer:
drop table tables
drop table columns
create table tables (table_id int, tableName varchar(128))
create table columns (table_id int, columnname varchar(128), columntypedef varchar(128))
insert into tables
select 1, 'table1'
union
select 2, 'table2'
union
select...
October 10, 2016 at 5:19 pm
Hello Eirikur,
Thank you so very much for taking the time to help me.
I am creating a small web portal that allows the user to register. Then upon registration, will be...
October 10, 2016 at 10:00 am
Hello Jeff,
Thank you so much for your guidance.
I will post the CREATE script for the sp and function and any data.
Thank you again!
Matt
December 22, 2015 at 9:09 am
Hello Luis,
I will do this.
Thank you so very much.
Sincerely,
Matt
December 22, 2015 at 9:04 am
Hello Luis,
I can't thank you enough for all your help.
I ran into some errors with the code you helped me with, but having seen your advice, it makes sense.
I am...
December 21, 2015 at 3:09 pm
Hello Mad Admin,
I think I am getting closer with your help. Here is what I have:
DECLARE @RigsVolTableParam varchar (10)
DECLARE @RigsVolRowParam float
DECLARE @RigsInputActionParam varchar (20)
DECLARE @VolumeParam numeric (17,2)
DECLARE @RegStartQtrParam varchar...
December 21, 2015 at 3:08 pm
Hello Luis,
I am most appreciative of your time and attention.
I am going to try out your suggestion. I will post back.
Thank you so much!
Matt
December 21, 2015 at 9:59 am
Hello Mad Admin,
Let me try this suggestion.
Thank you so very much for your time and assistance.
Most sincerely,
Matt
December 21, 2015 at 9:59 am
Hell Alan,
Thank you so very much for taking the time to help me.
I am going to try this now.
Most sincerely,
Matt
December 17, 2015 at 2:09 pm
ufnGetPerYear_1 function definition:
USE [SAPBW_DataWarehouse_R3]
GO
/****** Object: UserDefinedFunction [DWH].[ufnGetPerYear_1] Script Date: 17/12/2015 21:06:41 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER FUNCTION [DWH].[ufnGetPerYear_1]
(@CnV numeric(17,4), @StrQtr int, @StrYr int, @EndQtr int, @EndYr...
December 17, 2015 at 2:08 pm
Hello,
Ok, I resolved it.
I found lines in the Script Task C# script that held the table name and row name for each individually processed column.
I stored these as they...
December 8, 2015 at 9:58 am
Viewing 11 posts - 1 through 11 (of 11 total)