Viewing 15 posts - 31 through 45 (of 53 total)
As a programmer from wayback - 1982 to be precise - I have seen everything come around go away and come back again, with a lick of paint; a new...
August 5, 2008 at 3:02 am
Thanks for your help John, I've decided to leave Table Valued Functions until they change somewhat as the limitations for what we want to achieve are too restrictive!
I'll stick to...
March 27, 2008 at 3:11 am
John Mitchell (3/14/2008)
JamieWill this work?
...FROM #tmpUsed t INNER JOIN (
SELECT Bid, Price_date, sedol_number
FROM dbo.fn_Find_Security_Details(Sedol_Number, AsAt)
) f
ON f.sedol_number=t.sedol_number
John
Hi John
Thanks for replying. Sadly it doesn't work, I am trying to link the...
March 14, 2008 at 6:20 am
Sadly I'd have to burn precious money and lots of it to get off this island, but I'm thinking of you all enviously - my swag collection is nearly depleted...
February 27, 2008 at 4:16 am
As a developer I want a stable platform to work off.
Most MS customers don't necessarily understand what goes in to a service pack or update - especially those that...
February 1, 2008 at 3:41 am
Modified the original SP sp_Fkeys added two new fields, For_Replication and Constraint_Active. Hope this helps someone.
set nocount on
DECLARE @pktable_name ...
January 17, 2008 at 4:24 pm
Thanks for the post.
I think however that I've found the answer in sysconstraints status field. The Higher bits have the useful nuggets that MS was not telling us about.
So...
January 17, 2008 at 4:19 pm
OK having re read I realise I've answered the wrong question...
I have a table with several transactions and i want to count # of transactions at each hour
StartTime, EndTime, Transaction_UserID,...
January 16, 2008 at 5:34 pm
Hi Mike,
Theres a snippet of code in the scripts section that counts lines of code if there is a primary key.
SELECT so.name, CurrentCount = coalesce(si.rows,'N/A')
...
January 16, 2008 at 5:18 pm
OK If I read this right you are after the highest date from one of two columns column in a linked table.
max(c.scj_eend) END_DATE
from ins_stu a , srs_scj c, srs_cbo b
where...
January 16, 2008 at 5:15 am
With age and income all the small gadgets and useful gizmos have been bought (and ebayed as you realise that you really don't have a use for a juicer/breadmaker/can opener/electric...
December 7, 2007 at 5:08 am
I've done both. Generally I try to stop posting inflammatory emails until I've tried to understand the intended meaning but sometimes even carefully crafted emails can be misconstrued with the...
November 30, 2007 at 2:34 am
Thanks for the replies. It makes sense - I was hoping there was an all encompassing solution that would allow this within SQL, but this will work going forwards.
August 15, 2007 at 1:32 pm
Would you suggest dropping all existing foreign key constraints in order to maintain referential integrity for this situation? I had tried using a mixed approach but as entities and contacts...
August 14, 2007 at 8:42 am
All the best...is it a big (round numbered) celebration?
10 years for us this year...
May 23, 2007 at 10:01 am
Viewing 15 posts - 31 through 45 (of 53 total)