Viewing 15 posts - 2,851 through 2,865 (of 5,356 total)
Sure, that this is not an old radio interview with Ronald Reagan, which recently was discovered again? ![]()
January 13, 2004 at 5:41 am
If you have the choice between Access and SQL Server, use SQL Server.
As your app will be exposed to the web, it shouldn't matter from where they log in....
January 13, 2004 at 5:06 am
Yes!
There's always more than one way to skin the cat (Hey, did anybody notice I learned a new phrase
)
January 13, 2004 at 1:30 am
Language barrier:
Ich muss jetzt mal eine Lanze für die neue Forumsoftware brechen ![]()
I like the new forum. Definitely something to get used...
January 13, 2004 at 1:23 am
I think you need to state the appropriate content type like this (Excel in my example)
Response.Clear Response.Buffer = true
Response.Expires = 0
Set oConn = ConnectAttachment()
Set oRecSet = Server.CreateObject("ADODB.Recordset")...
January 13, 2004 at 1:18 am
Andy,
you didn't say anything about availability outside US.
Anything new on this?
January 13, 2004 at 1:14 am
I might be wrong, but IMHO in almost any case using (NOT) EXISTS will be faster to check for existence, because EXISTS can stop once the logical test proves true.
But that's...
January 13, 2004 at 1:09 am
Hm, obviously I missed the char description. Gladly char with leading 0s will turn without problems into int.
Jonathan, nice to see you started correcting wrong answers again!!!
January 13, 2004 at 1:00 am
Not sure if this will really help, but what about
declare @myyear int
declare @mydays int
declare @startofyear datetime
set @myyear = 3
set @mydays = 57
set @startofyear =dateadd(d,@mydays-1,dateadd(yy,@myyear,cast('01.01.2000' as datetime)))
select @startofyear
------------------------------------------------------
2003-02-26 00:00:00.000
(1...
January 12, 2004 at 2:25 pm
Define the identity property is no guarantee for a gapless sequence.
CREATE TABLE MyIdentity(
id INT IDENTITY(1,1) NOT NULL,
some_other VARCHAR(10)
)
GO
BEGIN TRAN
INSERT INTO MyIdentity VALUES('Erster')
COMMIT TRAN
BEGIN TRAN
INSERT INTO MyIdentity VALUES('Zweiter')
ROLLBACK TRAN
BEGIN TRAN
INSERT INTO MyIdentity...
January 12, 2004 at 1:26 pm
I'm not sure if I understand you.
Do you want to test before actually inserting?
Is the ID some kind of key?
Can you give some more information?
January 12, 2004 at 6:04 am
I guess right now, we don't have to worry about that, David.
It seems not to be available outside the US, or...?
January 12, 2004 at 5:03 am
I think rockmoose means a user-defined function that returns a table. From BOL
CREATE FUNCTION LargeOrderShippers ( @FreightParm money )
RETURNS @OrderShipperTab TABLE
(
ShipperID int,
ShipperName nvarchar(80),
OrderID int,
ShippedDate datetime,
...
January 12, 2004 at 3:39 am
Viewing 15 posts - 2,851 through 2,865 (of 5,356 total)