Forum Replies Created

Viewing 15 posts - 9,706 through 9,720 (of 18,926 total)

  • RE: Remote Work

    Picture link is broken Steve... No comment on the article as I've not read it, yet .

  • RE: Stop the madness

    You can't imagine how happy I am to have bowed out of this one after day 1.  I wish I could compute the time I saved by not reading that...

  • RE: Problems with free text feild

    Gonna save Jeff some typing.

     

    You still don't need a cursor for that conversion.  Use temp tables and batch convert the data before final import.

  • RE: Merging rows

    Can't be done unless you know the system.  This job is much easier to custum make than to be made by sql server.

     

     

  • RE: Merging rows

    List all tables where the id has been present, then depending on wether this is n-n or 1-n, then you can simply replace the new id with the old id. ...

  • RE: Problems with free text feild

    Can you supply the table DDL please?

     

    TIA.

  • RE: General tips for clearing cursors

    Here's a much shorter version of the same idea.  I once had a trigger that was updating a column in a table RBAR style (select the row id, then update...

  • RE: Problems with free text feild

    Can you post the code so we can look at it.  We'll explain as we go along.

     

    Short story : varcharCol1 + UnicodeStaticString + varcharCol2 ... = Unicode = 4000 chars...

  • RE: Query using partial Group By

    USE SSC

    GO

    IF EXISTS (SELECT * FROM dbo.SysObjects WHERE Name = 'Demo' AND XType = 'U' AND USER_NAME(uid) = 'dbo')

     DROP TABLE dbo.Demo

    GO

    CREATE TABLE dbo.Demo

    (

       TruckID INT NOT NULL

     , StatusDate DATETIME NOT...

  • RE: Problems with free text feild

    We need table DDL to answer this one.

     

    One thing to check out is the make sure that no column is of unicode datatype (nchar, nvarchar) and not even some constant...

  • RE: Linked Server error .... sometimes

    A problem / solution post is more usefull to the world than "solved".

     

    Just my 2 cents.

  • RE: Round to Even (aka Banker''''s Rounding) - The final function

    Hence the not necessary to do so.  But it doesn't stop me from doing it all the time .

  • RE: Add quotes around every value

    I'd like to see your final solution if you don't mind sharing it with the world.  It may help someone else in the near future who is in the same...

  • RE: Drop down list

    On the onclick() event of the combobox, check the value of the combo and display/hide the textbox accordingly.

     

    Then depending on wether the textbox has a datasource, then you may hve...

  • RE: The SQLServerCentral.com 3000

    But now just imagine what I could get when I'll hit the 10K mark .

Viewing 15 posts - 9,706 through 9,720 (of 18,926 total)