Viewing 15 posts - 6,106 through 6,120 (of 6,486 total)
*&^%$#@. thanks! can't seem to count today:)
October 10, 2007 at 11:36 am
Try using just the server IP instead of name from the client. If that doesn't work - try a regular ping from the client to the server.
I still didn't...
October 10, 2007 at 11:33 am
Marcus Farrugia (10/10/2007)
October 10, 2007 at 11:20 am
don't forgetting indexing (a strong + for #2). you'd be relegated to row scans/table scans to find the ones you want (for a where clause, for ordering, etc....)
Finally -...
October 10, 2007 at 11:12 am
Also - your "multiple UI version" argues for separate databases if the version change requires a change to the DDL.
I also don't like being on WHERE clause away...
October 10, 2007 at 11:06 am
You always connect to an instance - it's a matter of whether you've made a NAMED instance or not. You should be able connect to either
If you have a firewall...
October 10, 2007 at 10:48 am
Difference in behavior. Access displays data the instant it has enough to fill one screen; SQL QA waits to have the WHOLE thing.
Try hitting the "scroll to the end"...
October 10, 2007 at 10:23 am
Carla Wilson (10/10/2007)
October 10, 2007 at 10:16 am
Assuming you handle the nulls correctly (meaning the fields actually HAVE a value and it's a valid value), you could also try this one on:
...
select dateadd(dd,daypublished-1,dateadd(mm,monthpublished-1,dateadd(yy,yearpublished-1900,0)) as fulldatetime
...
October 10, 2007 at 10:01 am
When built right in the right circumstances, CLR functions perform very well (better than UDF's for that matter). Just about anything string-related (rising to the level of requiring a...
October 10, 2007 at 9:50 am
This was a recent hot topic - take a look here:
http://www.sqlservercentral.com/Forums/Topic403180-338-1.aspx
For what it's worth - not sure what's causing your overflow error (unless there's a divide by 0 erro going...
October 10, 2007 at 9:35 am
Maybe the caffeine just wore off - but why are you adding up increments of 100?
....
sum(Case when Answer=1 then 100.0 else 0 end),
....
October 10, 2007 at 9:25 am
Be careful with developing apps with developer edition. MS was very tricky there, since it's got all options turned ON (it's essentially a clone of enterprise edition). It...
October 10, 2007 at 8:00 am
Kenneth Wilhelmsson (10/10/2007)
That is, the problem is that a given order is expected, and...
October 10, 2007 at 7:32 am
The better way will likely be to pull the .lowpart and .highpart separately. Also - are you trying to convert it to bigint or datetime?
SQL datetime doesn't deal in...
October 10, 2007 at 7:16 am
Viewing 15 posts - 6,106 through 6,120 (of 6,486 total)