Forum Replies Created

Viewing 15 posts - 586 through 600 (of 7,429 total)

  • RE: Trigger validations

    If you defined a bulk load in your DTS package it may bypass the trigger. But why do you have a trigger to look for nulls? What do you have...

  • RE: Instances: Yes or No?

    Only instances I would think is Dev, QA and UAT if ran on the same box. This way you can have a single DB name and backup from each other...

  • RE: What am I missing?

    From SQL BOL and yes I used the wrong word.

    Floating point data is approximate; not all values in the data type range can be precisely represented.

    And here is a nice...

  • RE: What am I missing?

    Float is inprecise approximate and may throw off the expected results.

    If you want 2 inputs to be int the do as you have but do one of the followiung ways to...

  • RE: SQL Server 2000 on VMware - Advantages/Disadvantages

    The problem is many of us would avoid it from a perfomance standpoint unless you have enough hardware to do the job. If you do then their may be no...

  • RE: LIKE%

    Yes, your syntax is incorrect in your example. The question, if not answered by the above, is "What is your goal"?

  • RE: When is the log truncated?

    I suggest you look at "Transaction Log Backups" in SQL BOL.

    As for truncating, I think it is a bit of a misnomer. With the TL is truncated it does not mean...

  • RE: Foreign Key constriant

    Reads to me like you have a FK on one of your columns which is constrained to another tables key column which does not have a matching value. You will...

  • RE: Physical Memory increasing on repeateadly inserts, reindex

    Actually you should not bother to defrag a drive with SQL databases on it live. If they are open they will be locked and the defrag process will end before...

  • RE: Hard drives suddenly running slow??

    My most likely suspect would be your system Page file? If a lot of data is being switched in and out of the page file it can bog your system...

  • RE: exporting a table into excel sheet

    Keep in mind Excel has a 64k row limit.

  • RE: Very tough Challenge.....

    The question I have is what system was he to write this against? Be funny if he get's it wrong due to SQL difference or if the teacher wanted in...

  • RE: Uint16, Uint, byte, sbyte, double in C# is what in SQL 2000 ?

    .antares686 th, .antares686 td {border:1pt solid #000000} 

    Short Name .NET Class Type Width Range (bits) SQL Datatype (Closest Match)Constraint to use (if needed in table definition)

    byte

    Byte

    Unsigned integer

    8

    0 to 255

    tinyint

    sbyte...

  • RE: reads on inserts

    Still trying to figure out the other note to give a logical reason or a way to reduce. But as for your item Sorin, I would look at the number of...

  • RE: Get percentages

    See if this helps

    SELECT

     ((SUM(CASE WHEN (PL.Pltat + PL.Plunworkable) > 75 THEN 1.0 ELSE 0.0 END) / CAST(Count(*) as decimal(10,5))) * 100.00) AS Percentage,

     ROUND(((SUM(CASE WHEN (PL.Pltat + PL.Plunworkable) > 75 THEN...

Viewing 15 posts - 586 through 600 (of 7,429 total)