Viewing 15 posts - 7,216 through 7,230 (of 8,760 total)
Out of curiosity, what Oracle version/edition/OS are you on?
😎
September 2, 2014 at 1:53 pm
Ed Wagner (9/2/2014)
...that was pretty simple stuff that should have been easy for him to troubleshoot on his own.
I'm glad that optimism prevails:-D
😎
September 2, 2014 at 1:52 pm
Ed Wagner (9/2/2014)
Eirikur Eiriksson (9/2/2014)
Lynn Pettis (9/2/2014)
September 2, 2014 at 12:18 pm
Lynn Pettis (9/2/2014)
Curious how the code that our silver spooner posted even worked. After declaring all the variables I still have a bunch of red squiggly lines.
Total lack of...
September 2, 2014 at 11:10 am
Quick thought, if the workset is large, I would recommend the Tally table version, see the IO statistics below
😎
Tally table
Table 'Workfile'. ...
September 2, 2014 at 10:29 am
Try this, much easier to use replace than concatenation
😎
USE tempdb;
GO
DECLARE @PARAM_DATE_TOKEN NVARCHAR(10) = N'{{@PARAM_DATE}}';
DECLARE @PARAM_DATE_VALUE NVARCHAR(10) = N'2014-08-08';
DECLARE @STR_TEMPLATE NVARCHAR(MAX) = N'''SELECT CAST(CAE_RDB_ENTRY_DATE as Date), *
FROM OPENQUERY(LS_RDB_DWH, ''''SELECT *...
September 2, 2014 at 10:19 am
A quick window function solution
😎
USE tempdb;
GO
CREATE TABLE #TotalRevenue_Investments ( [Month] INT,[Year] INT,TotalRevenue INT,Descr VARCHAR(100),Company VARCHAR(100))
INSERT INTO #TotalRevenue_Investments
( Month ,
Year ,
TotalRevenue ,
Descr ,
Company
)
SELECT 1,2014,12,'Late Sales','US Late Sales' UNION
SELECT 2,2014,44, 'Late Sales','US...
September 2, 2014 at 10:08 am
Welsh Corgi (9/2/2014)
The date is going to change.
DECLARE @Select VARCHAR (50)
DECLARE @SQLQuery VARCHAR (500)
DECLARE @PreSelect CHAR (1)
DECLARE...
September 2, 2014 at 9:57 am
phingers (9/2/2014)
The maximum recursion 100 has...
September 2, 2014 at 3:19 am
ajmoon1313 (9/1/2014)
I've been task to pull daily report that covers Thursday throught Wednesday (date field as varchar(10) 2014-09-02)
for example today...
September 1, 2014 at 11:02 pm
skeezwiz (9/1/2014)
September 1, 2014 at 9:53 pm
Quick thought, redesign the recursive iteration approach, it is a real performance killer, use a tally table instead.
😎
September 1, 2014 at 2:28 pm
SpeedSkaterFan (9/1/2014)
I don't think that is the solution
The linked server only allows me a small portion of the things I want to do
1 of the tables I need to...
September 1, 2014 at 2:05 pm
Lynn Pettis (8/22/2014)
And Mr. Celko is back with his baseball bat. :Whistling:In more than one thread. :Whistling:
Now he has put the bat aside and instead taken up the lynching of...
September 1, 2014 at 1:42 pm
SpeedSkaterFan (9/1/2014)
I would like to use SSIS to get data from a mySQL database to SQL Server.
I have created a project incl package. In this package I have added...
September 1, 2014 at 1:31 pm
Viewing 15 posts - 7,216 through 7,230 (of 8,760 total)