Forum Replies Created

Viewing 15 posts - 4,951 through 4,965 (of 5,103 total)

  • RE: Saving Database Diagram as JPEG?

    Do you really need JPEG?

    PDF is a very good and simple alternative with a lot of supporters

    Just My 2 cents

  • RE: Trigger

    quote:


    CREATE TRIGGER t_ui_CustShippers

    ON CustShippers

    FOR INSERT, UPDATE AS

    IF UPDATE([Default])

    BEGIN

    IF EXISTS (

    SELECT *

    FROM CustShippers ...

  • RE: Security Configuration between databases

    quote:


    I think I have found that with sp's the default is that the users permissions in the target database are set...

  • RE: Login Error

    check the account login that EM is using

    HTH

  • RE: Visual Basic Code Generator

    HTTP 500 - Internal server error

    I do speak spanish but can't access it.

  • RE: updating different records in one SP

    Declare @varlist varchar(255)

    Set @varList = ',1,2,3,5,' -- Commas before and after

    Update tempSalesDetail

    SET BTI = 1

    WHERE CHARINDEX(',' + Convert(varchar, tempSalesDetailID) + ',', @varList) > 0

    Note this is good for "small"...

  • RE: using IN and a list of values

    I am still curious about your 75 Million rows

    I would like to know the performance of the query posted using sp_excecutesql @str with the hard coded numbers in @str....

  • RE: Delete the appended backup file from a disk device

    nope.

    use separate files so you have total control on what stays and what goes away

  • RE: Backup file Security if it is stolen

    and make sure the PASSWORD is STRONG enough because if that is a concern dictionaries attacks run very fast on sql server!

  • RE: Cannot connect to a database

    100% with brian the Default database for the login used to connect was dropped! as amtter of fact on my enviromet all logins are mapped by default to tempdb so...

  • RE: Trigger

    I would add a unique constraint on

    (Customer_Name, Ship_Location, Shipper, Default)

    One thing though instead of real names you may want to use foreign keys to look up tables for ship_location...

  • RE: default date format

    quote:


    quote:

    --------------------------------------------------------------------------------

    quote:

    --------------------------------------------------------------------------------

    Quick brainteaser for our beginning DBA's: what's the quickest method to strip out the time from a DATETIME field (returning...

  • RE: Patch Management Mailing List

    thanks!

  • RE: Using Unions in SQL Server 2000

    quote:


    gljjr While using the "All" keyword will seem to do what you want a more reliable solution would be something...

  • RE: default date format

    quote:


    Quick brainteaser for our beginning DBA's: what's the quickest method to strip out the time from a DATETIME field (returning only...

Viewing 15 posts - 4,951 through 4,965 (of 5,103 total)