Viewing 11 posts - 106 through 116 (of 116 total)
>3) Yes, you can use SQL QA 2000 to access SQL Server 2005, but only from another server. I believe that if you install SQL Server 2005 on the same server...
February 28, 2006 at 3:48 am
I think, the "Microsoft SQL Server 2005 Upgrade Advisor", which comes with the installation dvd is a good start.
February 28, 2006 at 3:43 am
>I think it's safe to assume this won't be a production environment<
How did you discover?
February 28, 2006 at 3:38 am
Basically, the procedure is OK. But how about some parentheses around it's parameters?
CREATE PROCEDURE [contact].[importContactClient]
(@userID int, @id uniqueidentifier) AS ...
February 28, 2006 at 3:35 am
I can't see, why a cursor would be necessary. Simply traverse your dependencies and issue a non-cursor call as long as you receive results.
'DELETE FROM ' + @tableX + ' WHERE...
February 28, 2006 at 3:06 am
Hello. I don't agree. First, people have no choice SQL-Server doesn't care, whether one ENTERS a time portion. That doesn't change the storage of...
February 28, 2006 at 2:29 am
Do you think there are "."-characters stored in floating point values? ;P
Of course not. The internal storage is always completely different from what you see. Never wondered how SQL...
February 27, 2006 at 10:36 am
-- There are a lot of possible solutions. The following is only one of them.
DECLARE @dtmEnd AS DATETIME,
@dtmStart AS DATETIME
SET @dtmEnd = FLOOR(CAST(GETDATE() AS FLOAT))
SET @dtmStart = DATEADD(d,-1,@dtmEnd)
PRINT...
February 27, 2006 at 10:22 am
Of course, there are questions: will you pay me, if I do your work?
Otherwise your problem should at least be broken down to...
February 27, 2006 at 9:47 am
I wonder how many magnificent stored procedures could have been written, while you people prefer to talk ... 😉
Simply take a look at this discussion. Is it structured? Is it...
August 26, 2005 at 10:49 am
!exactly. The problem with the assumption of only one row being inserted/updated is obvious - but this wioll raise an error. The bigger problem is that inserts will go by...
August 18, 2004 at 1:06 am
Viewing 11 posts - 106 through 116 (of 116 total)