Viewing 15 posts - 1 through 15 (of 42 total)
Thanks for your reply, Mr. Brian. I got your point. I will first check with the client to run this script on their Teradata environment and based on the result...
April 6, 2021 at 5:18 am
Not allow me to attahed .sql file so copy paste code here.
SELECT case when REGEXP_INSTR(string, '/ OB/') > 0
OR REGEXP_INSTR(string, '/OB/') > 0
OR REGEXP_INSTR(string, 'OB//') > 0
OR REGEXP_INSTR(string, 'T/O') >...
April 5, 2021 at 10:18 am
Thanks, Jeff and Scott for your time.
Actually, once data is available in DB then only I will able to use system views, as you mentioned but in my case, I...
July 11, 2019 at 7:14 am
I am trying to automate whole things from source to DW. I had already done from staging to DW I need to run one script which will handle all scenarios...
July 8, 2019 at 11:14 am
please find below script for creating metatable
CREATE TABLE [dbo].[metatable](
[ID] [smallint] IDENTITY(1,1) NOT NULL,
[Table_Name] [varchar](50) NOT NULL,
[Schema_Name] [varchar](128) NOT NULL,
[Column_Name] [varchar](50) NOT NULL,
[Column_Datatype] [varchar](50) NULL
) ON [PRIMARY]
GO
SET IDENTITY_INSERT...
July 8, 2019 at 7:47 am
Try to reregister ODBC or reinstall your ODBC driver. It will work.
November 8, 2018 at 11:57 pm
solved i had provided wrong column name. both place i have provided packagetype rather than coveragetype
😛
September 29, 2016 at 4:49 am
pivot will not work as i have multiple columns and 15m records. i use below code but it give me value for first column pcakgetype but it is not working...
September 29, 2016 at 4:45 am
Thanks for your reply. I had gone through it. seems it will give me new row but i want new columns. I am trying to update it as per my...
September 29, 2016 at 2:54 am
yes i want to write as date in sql server. but before that i need to check format yyyy-mm-dd other format then filter that data
September 27, 2016 at 2:51 am
Understand but .net application need to update status back to table. so i am worried about locking issue
September 21, 2016 at 6:52 am
I have total more than 1 million records and my SP will use by .net application with 15-20 thread. so Application read one row and update status base on some...
September 21, 2016 at 5:17 am
You can use SSIS package and provide precedence constraint is success then only go to next step.
September 20, 2016 at 10:14 pm
HI,
It's done. I have added tables with auto incremental id and foreign key to create dummy nodes. Once again Thanks for your help 😛
September 16, 2016 at 5:39 am
Viewing 15 posts - 1 through 15 (of 42 total)