Viewing 11 posts - 1 through 11 (of 11 total)
I think SQL 2000 was such a hot seller Microsoft did not want to rock the boat. But 5 years was just a little too long.
My vote 3-4 years...
May 18, 2007 at 9:24 am
Yes very very bad, really a NO DESIGN table. Believe or not, I had to deal with NO UNIQUE CONSTRAINT Tables, these BAD Designs with Commercial Enterprise systems.
December 20, 2005 at 12:10 am
This does the same thing, simplier and NO CURSORS. If it can be done without a cursor, than much better.
CREATE TABLE [dbo].[Employee] (
[id] [int] NULL ,
[name] [Varchar] (50)...
December 20, 2005 at 12:03 am
I have been doing this for years, it is the greatest quikie adhoc reporting tool. Worth repeating...
Left out a step though , To always make sure you get lengthy column results:
Set...
October 26, 2005 at 7:47 am
If you are doing this in Query Analyzer, make sure your settings are correct for output. Oh, Like Ray has pointed out already and of course Query--> results in text
August 24, 2005 at 3:07 am
Relink your table to SQL, delete link then link again, the column schema could of been changed in SQL or corrupted in Access.
This may happen if any changes, even minor,...
March 3, 2005 at 10:16 pm
Yes, it is a bad idea. But don't say it is, don't worry and let the game be played. Like most of the responses here, it will naturally change back to...
February 18, 2005 at 8:37 am
Here is a adhoc Code Generator for Basic Crosstab functionality.
Of course SQL 2005 will now have the PIVOT statement to make this easier!
/*** Template to CODE Generator to Create...
August 10, 2004 at 1:14 pm
Yes, good article, Connection strings well written saves lots of time when maintaining an Application.
This is very good. I have used this method in the past when we had to...
August 2, 2004 at 6:59 am
This will give your desired reults without error.
Declare @Res int ,@denominator int
Set @Res = 0
Set @denominator = 0-0
Select @Res = CASE WHEN @denominator...
May 9, 2004 at 9:00 pm
If you are getting null then the Application Name Property in the Connection is not set.
Add the Application Name Value to your SqlConnection connection string
application name="Northwind_Test-1.1"
This can be added in...
May 9, 2004 at 8:39 pm
Viewing 11 posts - 1 through 11 (of 11 total)