How can we help you today? How can we help you today?
eklein

Activity overview

Latest activity by eklein

It continues to fail.   My curent configuration is  SQL Server Management Studio 15.0.18338.0 SQL Server Management Objects (SMO) 16.100.41011.9 Microsoft Analysis Services Client Tools 15.0.19205.0 Microsoft Data Access Components (MDAC) 10.0.19041.1 Microsoft MSXML 3.0 5.0 6.0  Microsoft .NET Framework 4.0.30319.42000 Operating System 10.0.19044 Sql prompt is at 10.12.0.27933  (most current as of 10 minutes ago)  Table def is  USE [CRD_2010_FMT_220331] GO /****** Object:  Table [dbo].[cell_data]    Script Date: 6/6/2022 12:35:27 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[cell_data]( [fld_name] [char](15) NOT NULL, [cell_row] [char](5) NOT NULL, [cell_col] [char](5) NOT NULL, [RPT_REC_NUM] [int] NOT NULL, [ITM_VAL_NUM] [bigint] NOT NULL, [ITM_VAL_NUMF] [float] NOT NULL, [ITM_VAL_ALPHA] [varchar](128) NOT NULL, [sheet] [char](4) NOT NULL, [suppress] [char](1) NOT NULL, [component] [char](4) NOT NULL, [TYPE] [varchar](30) NOT NULL, [Data_id] [int] NULL ) ON [PRIMARY] GO ALTER TABLE [dbo].[cell_data] ADD  DEFAULT ((0)) FOR [ITM_VAL_NUM] GO ALTER TABLE [dbo].[cell_data] ADD  DEFAULT ((0)) FOR [ITM_VAL_NUMF] GO ALTER TABLE [dbo].[cell_data] ADD  DEFAULT ('') FOR [ITM_VAL_ALPHA] GO ALTER TABLE [dbo].[cell_data] ADD  DEFAULT (' ') FOR [suppress] GO ALTER TABLE [dbo].[cell_data] ADD  DEFAULT (' ') FOR [component] GO with a cluster index and 3 2ndary indexes  Is there anything else I can do to help.  The base table is quite large(244M rows), but I could create a subset for debugging purposes.  The data is publicly availiable, so there are no security issues Or if you want send me a zoom or webex meeting invite and I could share my screen and show you what I am seeing.  I am in US in Eastern Time zone.   I won't be in the offices tomorrow until PM but we can work out a schedule.  If I recall correctly you are +5 hours from me so mornings would probably be best.    Again this is not a prioriity problem for me, but as a developer myself, I know strange errors sometimes show you things you didn't know and can be educational  / comments
It continues to fail.   My curent configuration is SQL Server Management Studio 15.0.18338.0SQL Server Management Objects (SMO) 16.100.41011.9Microsoft Analysis Services Client Tools ...
0 votes
Very minor bug in "expand wildcard"
I know this is a minor issue but it's so odd I thought I would pass it along.   Looking at the following code SELECT *FROM(    SELECT rpt_rec_num,           LEFT(cell_row, 3) AS cell_row,          ...
2 followers 6 comments 0 votes
string_agg not recognized as a grouping function
Running version 9.1.1.4243   I had following code  SELECT     TOP ( 50 ) cd.RPT_REC_NUM                    , cd.component                    , cd.sheet                    , cd.cell_row             ...
0 followers 0 comments 0 votes
Format fails if SQLCMD mode variable is present
the following UPDATE [provider_master] set FIPS = p.fips_code, MSA = p.msa_code, longatude = p.fac_long, latatude = p.fac_lat FROM provider_master ...
1 follower 1 comment 0 votes
Update without where warning
While I like the intent of the warning of update/delete without a where clause, I find myself having frequent issues with code like the following : UPDATE [wk_srv] SET [surg_disch_mc&#...
1 follower 1 comment 0 votes
Format SQL function fails if SQLCMD mode variable is present
The following code SELECT * FROM dbo.sheet_master WHERE RPT_REC_NUM IN ( SELECT RPT_REC_NUM FROM Cost_report_$(HCycleN).dbo.rrn_status WHERE Rec_status = 'dropped' ) will...
2 followers 2 comments 0 votes