Forum Replies Created

Viewing 15 posts - 4,516 through 4,530 (of 5,356 total)

  • RE: QOD Cheats

    Hi Antares686,

    quote:


    I will say I mostly delete the EMails. I didn't even realize the answer was there next day until it was...

  • RE: float problems (with front-end Java app.)

    Hi Michelle,

    quote:


    We are using the float datatype in MSSQL 2000 as the datatype for storing a variety of weights.

    As far...

  • RE: Creating Extended SP using Visual Basic

    H scking,

    quote:


    Why, if the dependent files (VB Runtime or .net framework) are available on the server couldn't VB be used for extended...

  • RE: How To Delete a Default Constraint

    Hi wmp789,

    quote:


    I wonder if someone could tell me how to drop the default constraint on a certain column in a table.

  • RE: one terabyte of data

    Hi nyulg,

    quote:


    As of today I would definitly not recommend storing image files on the DB.

    Storing those files will be much faster and...

  • RE: Converting hex to int

    Hi David,

    quote:


    Found sp_hexadecimal that does the same


    where is this sp?

    Can't seem to...

  • RE: SQL Newie needs help

    Hi Dale,

    quote:


    Now, this I really, really liked 'cause it's so darn true:


    good to hear ?!?...

  • RE: Review: EditPlus

    quote:


    I have been accused on more than one occasion of being a command-line junkie, since I'll go to a command prompt to...

  • RE: QOD Cheats

    Hi mccork,

    I must admit I have cheated!

    Although there is no excuse for this, I wanted to keep track after one week out of office and to my ashame even one...

  • RE: Triggers: determine name of updated column

    Hi gserdijn,

    
    
    use tempdb;
    go
    create table t (
    Col01 int , Col02 int , Col03 int , Col04 int ,
    Col05...
  • RE: Review: EditPlus

    Hi Brian,

    quote:


    This reminds me of the emacs vs. vi debates we used to always get in on the Unix side.

  • RE: Converting hex to int

    Just for completeness,

    there is an undocumented extended stored procedure converting hex to int

    
    
    DECLARE @dec varbinary(10)
    DECLARE @result varchar(255)
    SET @dec = 813185089
    EXEC master..xp_varbintohexstr @dec, @result OUT
    PRINT @result

    Cheers,

    Frank

  • RE: SQL Newie needs help

    quote:


    I was inserting data and was stopping every now and then to c if it worked. My last check was at ID...

  • RE: SQL Newie needs help

    Again, hi Jigman,

    quote:


    While working in Enterprise Manager I try to update some fields, and then when i go to close the table...

  • RE: SQL Newie needs help

    Hi Jigman,

    quote:


    Thanks, I understand that there a no positions in my tables in my database, but when viewing the database in Enterprise...

Viewing 15 posts - 4,516 through 4,530 (of 5,356 total)