Viewing 15 posts - 1 through 15 (of 60 total)
CONVERT_IMPLICIT is a custom stored function ?
You probably need to expose the columns specified in the function to eliminate this message.
November 10, 2015 at 7:07 am
Quick answer:
Desperately trying to avoid "catalog clutter" with stupid tables that show no real business purpose.
In this case, these are tiny tables that have meaning only during processing.
More importantly, why...
November 9, 2015 at 2:46 pm
CREATE TABLE ##TEMPTARGQA
CREATE SYNONYM [GlobalTemp] FOR tempdb.dbo.##TEMPTARGQA
then your process uses [GlobalTemp] instead.
Brilliant, brilliant, brilliant.
In that way, I only have a small amount of dynamic SQL to build...
November 9, 2015 at 2:28 pm
Thanks Lowell, and we are considering creating the cataloged tables.
The Tempdb option won't work since all of the databases would share the same table....
and that table would need to have...
November 9, 2015 at 1:45 pm
Gail - I ended-up using a constraint instead of a unique index.
CREATE TABLE [dbo].[CONTROL_FACT](
[ID] [int] IDENTITY(1,1) NOT NULL,
[CTRL_ID] [int] NULL, -- 1
[CTRL_KEY] [varchar](50) NULL, -- 'TARGET_LAST_UPDATE'
[CTRL_VALUE] [varchar](1000) NULL, -- '2015-11-03',...
November 9, 2015 at 7:13 am
Thanks Gail -
I think that computed column with unique index is the best approach.
From what I've gathered, filtered indexes can only be created with filters on a single column.
November 9, 2015 at 6:38 am
Now I have a new problem.
I want my table to have two "keys", one integer, one string so that a value can be accessed by either.
I have solved the problem...
November 6, 2015 at 4:26 pm
Guys - I figured it out !!!
We had 3 separate databases ON THE SAME SQL SERVER INSTANCE !!!
Each database was trying to delete and then re-create that global temp...
November 6, 2015 at 10:59 am
Lowell - thanks much for that.
I think what is happening is that Pentaho is losing the connection to our SQL Server instance....
November 6, 2015 at 9:49 am
Thanks for that Sean....that's been my inclinaton as well.
PDI in release 5.3 has been so "glitchy"....just tons of small issues.
The strange thing about this is that "prepareExecution" method in...
November 6, 2015 at 9:46 am
Thanks, wasn't sure if the following syntax was supported or not....
CONSTRAINT C_KEYS CHECK (CTRL_ID IS NOT NULL OR CTRL_KEY IS NOT NULL),
November 5, 2015 at 10:32 am
Yes I did Jeff and it is showing up when I go:
Help,Manage Help Settings, Choose online or local help
And when I click on "Check for Updates", It says "Books Online...
November 5, 2015 at 9:19 am
Wow, thanks for that Lowell....nicely done !
Now I need to look into:
1) establishing and configuring my mail profile
2) scheduling the report via SQL Server Agent.
October 15, 2015 at 9:08 am
TO: user1;user2;user3
FROM: admin@xyz.com
SUBJECT: Hourly Report For 9 am : CORE 13 (+2) UPSELL 5 (-1)
BODY: embedded reports in HTML format - cell phone friendly
Note: There is nothing stupid...
October 14, 2015 at 8:02 am
Viewing 15 posts - 1 through 15 (of 60 total)