Forum Replies Created

Viewing 15 posts - 4,246 through 4,260 (of 6,486 total)

  • RE: flat file to DB

    In order to redirect - you'd need to have a separate file (probably a text file) be the destination of the error. You don't want it to run into...

  • RE: update with cursor

    carlos cachulo (3/11/2008)


    THANK YOU VERY MUCH, IT WORKED JUST FINE!!!

    welcome, happy to help!

  • RE: update with cursor

    Forget loops. You're in SQL server now, not in procedural code.

    update CL

    set u_resp=EVALOR

    from cl

    inner join (

    SELECT ...

  • RE: Accessing a sql 2005 named instance without an Alias

    You can put in the port using the following syntax:

    IPAddress,Port

    or

    Name,Port

    As in

    127.0.0.1,1542

  • RE: update with cursor

    You really don't need a cursor for this. I'd suggest some code, but there are enough errors in your code it's hard to tell what table is getting updated...

  • RE: flat file to DB

    By the way - did you actually look in the place it told you to? What's wrong with that row?

    from your error messages:

    Error...on data row 257124

    Is that the last...

  • RE: Turn off logging

    Good luck!~

  • RE: select count where displaying 0 when no record meets the where condition

    Just move your condition into the count. As in...

    Select id, count(case when param=1 then 1 else null end) as myCount

    from mytable

    Group by ID

  • RE: Truncate Table and Statistics in 2005

    If they're worried about statistics - why not just drop the table and recreate it? If truncate works, then you don't have any FK constraints.

    There should be 0 stats...

  • RE: Using VBScript to Automate Tasks

    Jeff Moden (3/11/2008)


    I say again... Just like SQL allows itself to take any form... or Java... or...

    I've seen some absolutely gorgeous VBS both formatting wise and code wise. ...

  • RE: Visual Studio 2005

    Good luck from another schmoe on that same long road.....

  • RE: The Social Contract

    The place where the social contract seems to be broken is that compared to 2000, the licensing prices quadrupled, and for a product that has "half the shelf life". ...

  • RE: Restricting loag file growth in DB properties

    I agree with above posts.

    To answer your initial question however - if you restrict the size, and your log backup strategy isn't aggressive enough, then you run the risk of...

  • RE: Anyone knows "developer" version of sql 2005 ?

    Developer Edition is good enough, all right. As a matter of fact - it's the same (functionally) as Enterprise Edition, so it might actually be considered by some to...

  • RE: Creating assembly

    The concern is that functions tend to hurt performance quite a bit. Although they might improve readability, they have a tendency to take the ability to leverage things like...

Viewing 15 posts - 4,246 through 4,260 (of 6,486 total)