Forum Replies Created

Viewing 15 posts - 196 through 210 (of 256 total)

  • RE: More than one operation on a connection at the same time

    Well, this is a "brand new" feature (not a bug) in ADO.NET!  This is not a limitation of SQLServer.  In ADO 2.x, I used to use the strategy of making one...

  • RE: RowGuid or Identity

    In my opinion, I would never in my life use an Identity field.  But that's because I've created my own Synchronization program rather than using Replication.  Identity Fields are very...

  • RE: Urgent Need: How to connect SQL Server 2000 Database by using ASP .NET

    Umm, yeah...read up on ADO.NET?  I would start by doing some research on the subject before posting something.  However, I have pity today...below is a VERY generic routine...

  • RE: Visual Basic Code Generator

    Nice site...responsive ! Yo deseo yo sé más español ! Quiza necesita agregar localización para unas idiomas múltiple? What app did...

  • RE: Returning Numeric values exactly as inserted

    I got around this issue by using a "SmallMoney" data type instead of Real, Decimal, or Float. When I tried using the other data types, a Value of "4.5"...

  • RE: ¿¿Recursive query??

    That all depends on what you're doing with the Data...in other words, how do you plan to display this data?

    If it's in a User interface, your recursion code should go...

  • RE: MSDE mdf file over 2GB!

    Yes, MSDE DBs are limited to 2GB. You can, however, move some of the data to a "Historical" DB in the same Server because the 2GB limit pertains to...

  • RE: SQL Server and time fields

    Umm, you can't stop Access (or SQL Server for that matter) from interpreting NULL Dates as "12-30-1899".

    There are two solutions. Read in the data using DTS and make a...

  • RE: Enterprise Manager file name

    Any SQL Server Tool will work with any kind of Instance of SQL Server (including MSDE). Just attach a new server from within EM (Enterprise Manager).

  • RE: relationships between tables

    From what I can gather (which isn't much), why not just make your Date field in the Parent Table the Primary Key? I can't understand why you have a...

  • RE: Select @@IDENTITY as id returns NULL

    Yes, although any table I have with a numeric Key is only a lookup table and gets modified once every...couple years? =P

  • RE: Determining Primary Keys

    Thanks for the input guys, this isn't really for me...I just needed proof for someone else =P. I'd actually never, ever use a Composite Key. I always try...

  • RE: Select @@IDENTITY as id returns NULL

    No, bdohmen is correct, use the "Scope_Identity" so that you're retrieving the ID from the Scope of your Application (i.e. Insert). I have been using Ident_Current('tablename') in my stored...

  • RE: Select @@IDENTITY as id returns NULL

    I speak of "updates" in a generalized manner. An update would be any Insert or Update statement.

    With Disconnected Recordsets, I try to make it a general rule that during...

  • RE: Determining Primary Keys

    Ok, maybe you have a Link to Database Normalization rules I can read? I know I've read it before, but I don't have the book anymore...

Viewing 15 posts - 196 through 210 (of 256 total)