Viewing 15 posts - 16 through 30 (of 209 total)
I wonder if some of the confusion is from people transitioning from Oracle PL/SQL and other compiled languages where the language is much more sophisticated and clear.
CREATE/BEGIN/END have...
February 21, 2006 at 6:41 am
You'll reference ORS5330-Prod as the Data Source in the linked server properties if you use the Microsoft OLE DB Provider for Oracle. We use the same string for the...
February 17, 2006 at 8:36 am
That post hints at another argument against putting integrity rules into the database... The integrity rules can be complex and cannot all be implemented in the database.
So, do...
February 17, 2006 at 8:11 am
What API are you using to generate the report?
I've done some extensive work with Crystal 9 in ASP.NET against Report Application Services (RAS) using the crystal RAS client...
February 16, 2006 at 7:57 am
It seems to me that the original XML is malformed by any definition and should have used CDATA or escaped the "content" in the first place.
It's been my experience in...
February 15, 2006 at 7:49 am
Jack,
I think you've touched on the sensitivity that most developers (me too) have regarding DRI, but I think some would argue that DRI is not complete without cascading deletes....
February 14, 2006 at 9:42 am
Does anyone think it is a little weird that if you specify a value it can be from 1 to 8000, but a varchar can hold upto 2^31-1 bytes if...
February 7, 2006 at 8:01 am
I agree with your point that the "permissions options" are valid issues especially when best practices were mentioned.
I think the point of the question was that best practices,...
February 6, 2006 at 11:57 am
On the other hand...
You can get the information that you need with COMPUTE BY but it won't come back in one result set. This is one reason I've had...
February 2, 2006 at 10:03 am
You'll need WITH ROLLUP in the GROUP BY clause.
Skipping the middle columns and getting the totals in the right place requires a complex solution. It is not...
February 2, 2006 at 9:53 am
This has been and will be a huge hole in the out-of-box experience for SQL Server, though Oracle doesn't have it either. Quest Software's TOAD (for Oracle) is great...
January 12, 2006 at 9:46 am
Oh! Here the parameter is mentioned only once. This seems rather trivial and rather unnecessary though!
SELECT DATEADD(dd, -DATEPART(dw, X.ONEDATE)-5, X.ONEDATE) AS Day1
FROM (SELECT @YYYYMM01 AS ONEDATE) X
What are...
January 9, 2006 at 1:40 pm
Would a user defined function work for you and/or the programmer?
SELECT FIRST_FRIDAY(@YYYYMM01)
January 9, 2006 at 1:15 pm
Having posted previously that I haven't seen FK relationships enforced in the database, I want to say that all the systems that I've worked on did have _logical_ FK relationships...
January 6, 2006 at 8:54 am
Viewing 15 posts - 16 through 30 (of 209 total)