Forum Replies Created

Viewing 15 posts - 3,421 through 3,435 (of 7,429 total)

  • RE: TXLog

    Is the drive maybe full? Or maybe there is some corruption on the drive, run checkdsk against it by right clicking the drive, goto tools and pressing the Check Now...

  • RE: Slow queries on different machines

    Check the NIC input/output packets. May be high and thus packets are blocking or being lost so they have to retransmit. ALso, try pinging from that server and see what...

  • RE: From excel to sql server: cells appear as NULL

    Check your transformation and the size and datatype associated with those fields. May have a wrong datatype or the length isn't long enough to pick up those pieces.

  • RE: changing datatypes (Real->Decimal)

    Unfortunately, no. The reason is there is not precise but approximate with Real and Float as stated in BOL so recovering the exact original number is impossible.

  • RE: Increments

    My only concern is that they could potentially have the same name and department.

    Ex.

    John A Smith IS

    John D Smith IS

    but you are only handling First and Last name. So you...

  • RE: Stored procedure changed date

    Drop and create are the only way without messing with the system tables. But then you have to redo permissions. Most folks just create a header in the SP and...

  • RE: How much data is too much?

    My suggestion is make sure like was said you have good indexes and have a good maintainence of the DB going on. However, wether or not you should archive is...

  • RE: Generate Next Key from Stored Procedure

    Still not uncommon but the only issue I ever saw was readability.

    Consider

    SET this = this + 1, @that = this + 1

    as opposed to

    SET @that = this = this...

  • RE: Who is to Blame for the SQL Slammer Virus?

    Nope, didn't say you could blame for ID10T errors (). No offense to those who made this type of mistake.

  • RE: Speed up the Performance of SQL SERVER

    quote:


    we have a SQL 2000 Server installed on a win2k pc(dual p3 1.5GHz +1GB RAM ,RAID 5).we have s/w developed in VB6/Crystal...

  • RE: Virus protection software for SQL Server

    McAffee and Norton Antivirus Corporate Edition (we use on some) both have been just fine. Usually we set them for a full scan once a week on Sunday nights where...

  • RE: Who is to Blame for the SQL Slammer Virus?

    quote:


    It's on both sides. There will always be bugs in code, so blaming MS for writing bad code isn't really right. Everyone...

  • RE: mapsids.exe

    Probably found a buffer overrun condition in the app and had to pull.

    Bug must have been found or it wasn't supported yet. Saw this happen in...

  • RE: SQL connection via VPN failed

    On your laptop have you maybe setup a Name to IP address entry in the LMHOST file, HOST file, Client Network Utility, or maybe a WINSServer entry for the network...

  • RE: Trigger question

    First off in a trigger why are you referencing PMR instead of inserted? When you do an INSERT or UPDATE it will pass thru the inserted internal table that the...

Viewing 15 posts - 3,421 through 3,435 (of 7,429 total)