Viewing 15 posts - 106 through 120 (of 123 total)
HI, from bol:
To create a view, the user must have CREATE VIEW permission along with SELECT permission on the tables, views, and table-valued functions being referenced in the view, and...
June 19, 2002 at 4:37 am
Hi, put the dts data in a temp table. Write some sp's to update from the temp table to the real table.
June 19, 2002 at 2:03 am
hi from bol:
In a fast local area network (LAN) environment, Transmission Control Protocol/Internet Protocol (TCP/IP) Sockets and Named Pipes clients are comparable in terms of performance. However, the performance difference...
June 17, 2002 at 5:25 am
June 14, 2002 at 7:14 am
Hi make a new job step with the sp. In the flow logic refer to this step on failure.
June 13, 2002 at 9:08 am
Hi if you change a table you have to recreate the dts package, somehow the package does not recognize the new structure. (in sql 7 sp3)
June 13, 2002 at 5:11 am
Hi, did you put the blob fields at the end of the select statement?
June 13, 2002 at 4:55 am
Hi , in a trigger you can use the old and new value of a column, maybe this is of some help.
June 13, 2002 at 4:26 am
I use 3 to 4 fingers. If i use more then i have to use the backspace more often. I prefer the keybord instead of the mouse.
June 11, 2002 at 3:19 am
Hi joohan,
One thing we did for maintaing access clients is: Put the access client on a intra net web site so that users can download this. If the have a...
June 10, 2002 at 4:09 am
Hi, performance depends on several things. To get maximum performance using access and sql server you can do several things:
do not use linked tables because by opening or quering them...
June 10, 2002 at 2:35 am
select * from (select P.id, count(c.id) as numberofChilds from tblParent P inner join
tblchild C on p.id=c.id
group by p.id )T inner join tblParent P2 on T.id=p2.id
June 7, 2002 at 3:55 am
Hi, i tested it on :Microsoft SQL Server 2000 - 8.00.194 (Intel X86)
Aug 6 2000 00:57:48
Copyright (c) 1988-2000 Microsoft Corporation
Desktop Engine on Windows NT 4.0 (Build...
June 7, 2002 at 2:18 am
try this
declare @datStart datetime,
@datEnd datetime,
@datCheck datetime,
@intMonth integer
set @datStart='01/01/2001'
set @datEnd = '12/31/2002'
set @intMonth = (select DATEDIFF(m, @datStart, @datEnd))
select @intmonth
set @datCheck= dateadd(m,-@intMonth,@datEnd)
select @datCheck
if @datCheck > @datStart
set @intMonth = @intMonth +...
June 4, 2002 at 1:59 am
Viewing 15 posts - 106 through 120 (of 123 total)