Viewing 15 posts - 76 through 90 (of 95 total)
Hi doug,
[edit]Alright, take 2
I did not find a way to take advantage of the Duration column.
Please be warned that this query will most probably not perform very well on bigger...
January 16, 2009 at 6:23 am
A MIN() and a GROUP BY should do the work, something like
Select DISTINCT
MIN(pur.InPurchaseId)
pur.StNotes,
...
January 16, 2009 at 5:53 am
It's probably faster for SQL to scan the entire table than scanning the index + bookmark lookup...
Is it a big table?
Have you tried creating a covering index?
January 14, 2009 at 3:17 pm
select column from table where len(column) > 6
That should do it!
January 13, 2009 at 10:26 am
Hi dbate,
Would it be possible to create a stored procedure on the Pervasive server and call that through your linked server?
January 13, 2009 at 10:21 am
Hi again!
I read over again and I'm not why I made that assumption... :hehe:
Now that I finally understand the specifications...
In the DTS wouldn't you just need two OLE connection and...
January 12, 2009 at 9:01 am
Hi samartel,
- no linked server
- no modification to existing DTS
- no new package (DTS, SSIS)...
- process must be run prior to sending data from STAGING to DW
To...
January 12, 2009 at 8:18 am
Hello arun,
Are you familiar with the CTE (common table expression) syntax as well as the Row_Number() function? Used together they work very well from requirements like yours:
;WITH tblRowNumbered
as
(
Select
Row_number() Over...
January 12, 2009 at 7:53 am
Hi Arun,
For the SP_OA procedure you first need to see if that even applies to you. Chances are you don't even have any in your code, at least let's hope...
January 10, 2009 at 7:50 am
Jeff Moden (1/9/2009)
or some wonderful OLE automation routines with sp_OA and forgot to drop objects?
Did they ever fix the memory leak with sp_OA? It seems even if you...
January 9, 2009 at 2:01 pm
Hi Mike,
I don't mean to be mr Obvious here but does your domain/login have permission to PA_Rev.dbo.Joblist ?
You never know it's friday and ... 😛
[edit] grammar...
January 9, 2009 at 1:42 pm
Hi Colin
Thanks for responding 🙂
Very good work around! :w00t:
It's now more of a challenged to find an explanation (known bug or BOL article or...) why it throws an error in...
January 9, 2009 at 1:14 pm
To run a distributed query on 2000 and/or 2005 I am fairly sure using a linked server is your only option.
I could be wrong, maybe someone more knowledgeable could help...
January 9, 2009 at 12:45 pm
Alright now that I understand what is being done let's see what we are trying to do. Bear with me I need very clear specifications before I can compute anything!...
January 9, 2009 at 8:16 am
Viewing 15 posts - 76 through 90 (of 95 total)