Viewing 15 posts - 3,451 through 3,465 (of 6,486 total)
In 2005 - you can emulate a uniqueID with the ROW_NUMBER() predicate.
May 1, 2008 at 10:51 pm
hmm...kind of looks to me that there's a combination of several things of code. One of which is the beginning to dynamically build the statement (based on whatever happens...
May 1, 2008 at 10:30 pm
Matt -
In your case - "Rownum" would be whatever you're using to sort your dataset (preferrably indexed if you want any kind of performance , ideally the clustered index)....
May 1, 2008 at 9:43 pm
Something isn't right, because the Return you're using there shouldn't be accepting a value. Where's the rest of the code?
I'd guess that something is causing the update to fail,...
May 1, 2008 at 1:56 pm
Lynn (5/1/2008)
Option 2 is my backup plan. However, I was interested in implementing option...
May 1, 2008 at 1:04 pm
Permissions....
Does the SQL Server service account have permissions to that share on the remote machine?
Alternatively - does the account running the query have read perms on master..syslogins?
May 1, 2008 at 12:53 pm
speaking of dupes...
methinks we've all been duped into continuing to beat up on this topic, since the OP is long gone...:)
May 1, 2008 at 12:25 pm
It used to be that Hubs were cheaper, so there was a price point advantage. High-end switches are still quite a bit more expensive.
On the low end - the...
May 1, 2008 at 12:12 pm
Cache is an "object database" (meaning dimensional/hierarchical, NOT relational). Probably gets away with it based on the fact that it's in its own class. Nothing else equivalent to...
May 1, 2008 at 10:30 am
RyanRandall (5/1/2008)
Jeff Moden (5/1/2008)
And, yeah... you could call it "Numbers"... but I'm one of those old guys where the table name shouldn't be a plural... :hehe:
I knew I'd get that...
May 1, 2008 at 9:59 am
John Rowan (4/30/2008)
April 30, 2008 at 9:12 pm
kmerkle (4/30/2008)
April 30, 2008 at 2:32 pm
In access - it could be something as simple as starting to type in a form, and hitting cancel...
In SQL Server - things like SET IDENTITY_INSERT ON could easily help...
April 30, 2008 at 10:55 am
If you really only want one row - use Jack's solution, but change it to state SELECT TOP 1, as in
SELECT Top 1
Fl.folderId
ISNULL(COUNT(EL.eventTargetId), 0)...
April 30, 2008 at 10:39 am
You want to encapsulate the grouped count in a sub-query, and THEN run the MAX against the derived results of the sub-query. Or - depending on exactly what you're...
April 30, 2008 at 9:47 am
Viewing 15 posts - 3,451 through 3,465 (of 6,486 total)