Viewing 15 posts - 3,526 through 3,540 (of 5,103 total)
BTW is always Three dots for MSACCESS. If the DB uses workgroup protection you may need further help(let me know) but if it is not you should be OK with...
June 28, 2005 at 8:33 am
The syscolumns Idea is nice! Just keep in mind that there is no documented way to control the colorder value and if someone modifies the table design through a drop/recreate (EM) you...
June 28, 2005 at 8:11 am
Oops its 16 ![]()
select convert(varchar(16),rcv_dt,20) AS MINUTE,count (*) AS ERPM
from audit_LOG1
group by convert(varchar(16),rcv_dt,20)
ORDER BY 1
June 27, 2005 at 3:11 pm
for very large tables I can confirm that for the one-column case ISNULL is a bit faster but I would still prefer coalesce instead of that little bit of speed.
June 27, 2005 at 3:00 pm
If you can pivot on the client this is less typing ![]()
select month(DataDate) as [Month]
,sum( case when category = 'CallCount' then CallCount else 0...
June 27, 2005 at 2:34 pm
If those changes are performed from a data modeling tool you should have no problem!
ex:
If you use VISIO for example to model the db schema you can at later time...
June 27, 2005 at 2:27 pm
I have tried that in Yukon, Apparently you just saved me time ![]()
June 27, 2005 at 2:21 pm
SET NOCOUNT ON
DECLARE @Analysis TABLE
(
RowID INT IDENTITY,
CallCount INT,
OpenCalls INT,
CompletedCalls INT,
CancelledCalls INT,
DataDate DATETIME
)
INSERT INTO @Analysis (CallCount, OpenCalls, CompletedCalls, CancelledCalls, DataDate)
VALUES (125, 0, 100, 25, '06/30/2004')
INSERT INTO @Analysis (CallCount, OpenCalls, CompletedCalls,...
June 27, 2005 at 2:13 pm
select convert(varchar(14),rcv_dt,20) AS MINUTE,count (*) AS ERPM
from audit_LOG1
group by convert(varchar(14),rcv_dt,20)
ORDER BY 1
June 27, 2005 at 1:50 pm
In datawarehousing is the ONLY way to simulate slowly changing dimentions because of the REAL independence that a primary key needs from the Data. What a Natural Primary key may...
June 27, 2005 at 1:21 pm
See my post here:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=194423
by the way when you have index ID = 0 you are actually refering to a HEAP. Can you make sure those tables have a clustered...
June 27, 2005 at 1:01 pm
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=184349#bm184550
I think he uses Copy & Paste A LOT ![]()
June 27, 2005 at 12:52 pm
Viewing 15 posts - 3,526 through 3,540 (of 5,103 total)