Viewing 15 posts - 2,236 through 2,250 (of 3,616 total)
I had SQL2K, SQL2005 and MySQL4.2 all coexisting on a development box.
I'm not sure if that is such a good idea on a production box but if you could have...
September 10, 2006 at 4:04 pm
I would start reading up about full-text indexes in SQL Server.
I would also look at the Thunderstone website for their Webinator search engine. It is a spider, which means...
September 10, 2006 at 4:02 pm
I think of the INFORMATION_SCHEMA views as being something like a programming interface. I know interfaces don't contain implementation, but as Andrew says, the underying tables may change but...
September 8, 2006 at 2:00 pm
If you are in a job you love with people you enjoy being with, time just flies by and you don't keep track of the hours.
My first job was 37.5...
September 8, 2006 at 2:20 am
From what I remember both SQL2000 and SQL2005 are cluster aware, which means that the 2nd instance will install on both nodes.
The installation routine should detect the existing instance and...
September 7, 2006 at 4:32 pm
DECLARE @TableName SysName , @ColumnName SysName SET @TableName = 'tblAccommodation' SELECT @ColumnName=COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name=@TableName AND COLUMNPROPERTY(Object_Id(TABLE_NAME),COLUMN_NAME,'IsIdentity')=1 PRINT @ColumnName
September 7, 2006 at 3:42 am
Personally I save all changes in a script and practise the deployment.
The bigger the deployment the more important it is to have it automated.
September 6, 2006 at 3:30 pm
SELECT COUNT(A) AS Total , SUM(CAST (A AS INT)) AS SLA_OK
FROM TABLE
September 6, 2006 at 8:56 am
At the end of the day if the app fulfills the business need then it is mission accomplished whether it was written in VB3, 4, 5, 6 or JFDI.NET.
Yes migrating...
September 6, 2006 at 6:22 am
I fully understand your point but from my limited experience with .NET the stories of M$ investing more in .NET than NASA did in the moon shot are entirely believable.
It...
September 5, 2006 at 3:32 pm
Basically, it is a memory hog. If you have less than 1GB forget it.
Also, in the Tools/Options make sure that under the General tab you select "Open Empty Environment"...
September 5, 2006 at 2:24 pm
The big thing with .NET is the framework of 7,000+ functions.
There are a lot of things that .NET does with very little effort that required an good knowledge of the...
September 5, 2006 at 12:26 pm
I 2nd the "work in small teams" part.
It also helps gain a bigger picture of the project so you don't go down a blind alley.
When I develop I...
September 4, 2006 at 3:10 am
The way I would approach this would be to have a user defined table function that splits out your country string and returns a table.
Your query would then become
SELECT *...
August 30, 2006 at 4:04 am
The RedGate software site has an article by "Phil Factor" lamenting the fact that you have to leave your techy past behind you to get into the higher echelons of...
August 29, 2006 at 8:11 am
Viewing 15 posts - 2,236 through 2,250 (of 3,616 total)