Viewing 15 posts - 1,861 through 1,875 (of 7,429 total)
For choice of front end user application IIS and other Web Servers serving web pages are actually the majority used method. But any language is pretty well capable (C, Delphi,...
May 28, 2004 at 3:45 pm
Also, if using Front Page there are two good books,
Front Page Inside Out http://www.amazon.com/exec/obidos/tg/detail/-/0735615101/qid=1085780084/sr=8-1/ref=sr_8_xs_ap_i1_xgl14/102-1779313-4044117?v=glance&s=books&n=507846
Front Page Bible http://www.amazon.com/exec/obidos/tg/detail/-/076453582X/qid=1085780147/sr=1-2/ref=sr_1_2/102-1779313-4044117?v=glance&s=books
but in reality depending on your server software if using IIS5 or...
May 28, 2004 at 3:41 pm
How do you mean. There are many ways tables can be viewed and each has a specific way. FOr instanes if you are querying sysobjects in a db then use...
May 28, 2004 at 3:34 pm
SELECT COUNT(*) FROM
Customers C
LEFT JOIN
Orders O
INNER JOIN
[Order Details] D
ON
O.OrderID=D.OrderID
ON
C.CustomerID=O.CustomerID
Just to throw in here the short and simple is this.
Any join is closed out...
May 28, 2004 at 3:31 pm
Are you sure, I thought you were geenrated multiple recordset in that case and could use .NextRecordset to move thru them. Sorry nothing to test with here to be sure.
May 28, 2004 at 3:14 pm
What does the user account have for permissions and if no one knows for sure just disable all permissions until a user grips and tells you who added.
May 28, 2004 at 3:11 pm
That would then mean thet ISNUMERIC actually does and explicit conversion of whatever you are entering.
May 27, 2004 at 4:04 pm
Try
SELECT
N.[ID], N.TRANS_DATE, N.AMOUNT
FROM
tblName N
INNER JOIN
(SELECT [ID], MAX(TRANS_DATE) TT FROM tblName T2 GROUP BY [ID]) TQ
ON
N.[ID] = TQ.[ID] AND
N.TRANS_DATE = TQ.TRANS_DATE
May 27, 2004 at 3:48 pm
Please run in query analyzer the following:
set showplan_text on
go
update q12004
set q12004.batch = adnh.batch
from adnh
join q12004
on adnh.phone = q12004.col035
go
And post the output back here. This will show us your execution plan...
May 27, 2004 at 2:51 pm
I have 2 SQL 2000 servers I patched to .859 that started this. Something in the patch causes it and I haven't narrowed it down yet. Without reinstalling, the Hotfix...
May 27, 2004 at 2:28 pm
Try NEWID() for ORDER BY, it isn't a number but does have the desired effect.
May 27, 2004 at 8:01 am
What ways have you tried from your machine? EM, QA, other? If the issue is in EM you may need to remove the server for being registred then reregister it...
May 27, 2004 at 6:34 am
Take an immediate snapshot of sp_who2 and use Performance Monitor to check Network, Memory, IO and CPU while the problem is occurring.
Sounds like somewhere the network may be fuzing out...
May 27, 2004 at 6:29 am
Take a look here http://support.microsoft.com/default.aspx?scid=kb;EN-US;303774
May 27, 2004 at 6:24 am
Try this
order by
(case when @orderby = 1 then [text]
when @orderby = 2 then left(convert(varchar,[timestamp],112),6)
when @orderby = 3 then deptid
when @orderby = 0 then left(convert(varchar,[timestamp],112),6) end)
Note:...
May 27, 2004 at 6:04 am
Viewing 15 posts - 1,861 through 1,875 (of 7,429 total)