Viewing 15 posts - 181 through 195 (of 256 total)
Question...why was the table designed with the "IN" and "OUT" as separate Records? I'm not harrassing, I just want to know if there is some type of advantage to that?
March 5, 2004 at 8:30 am
Keep in mind that I do not have SSRS yet...but, wouldn't it be possible (like Lee Frost says) to maybe override a Method in the WebService (maybe they have some...
March 4, 2004 at 6:22 am
Ok, my 2Cents
I will absolutely never use an Identity Column, whether as a Unique PK or not. This is only my opinion. I know...
February 20, 2004 at 7:19 am
In Developing a lot of .NET Applications, I have come to realize this is a simple process. Well, simple, yet difficult.
In .NET, it is possible to create "simple" Deployment projects. ...
February 20, 2004 at 7:02 am
Hmm, well, I lied, it's not really a "Users" table. It's more of an "Individuals" Table which stores Users and Contacts of Companies in the same table. The reason is...
February 16, 2004 at 6:32 am
Another way is to create a .NET Remoting App which runs as a Service on each PC running SQL Server or MSDE. Then, from another PC (your Main PC?) an...
February 12, 2004 at 7:08 am
UniqueIdentifiers are treating like Strings / Text...so Import them as such
February 11, 2004 at 6:54 am
Umm, try to Connect, if it fails trap the Exception and display a friendly Error to the User?
February 6, 2004 at 7:15 am
Select * From ThisTable Where ID IN(Select ID From ThatTable)
OR
Select * From ThisTable Where ID NOT IN(Select ID From ThatTable)
February 6, 2004 at 7:05 am
Ok, here's a revised version...
Select C.Column_Name As ColumnName, Data_Type As Type From Information_Schema.Key_Column_Usage CU Inner Join Information_Schema.Columns C ON (CU.Table_Name = C.Table_Name) And (CU.Column_Name = C.Column_Name) Where...
February 6, 2004 at 7:00 am
I've been able to do this 2 different ways. My problem with using the "Information_Schema" Views was that I needed not only the Column Names, but the DataType of those...
February 6, 2004 at 6:52 am
A lot of "manual labor" in an automated world
I've developed the Time-Tracking system for my job which handles everything and even keeps track of...
January 29, 2004 at 7:20 am
So why not just Execute an Update Statement instead of using a DataReader? It seems like your using the wrong object for the job...maybe you need to explain a little...
January 27, 2004 at 8:42 am
Viewing 15 posts - 181 through 195 (of 256 total)