Forum Replies Created

Viewing 15 posts - 46 through 60 (of 84 total)

  • RE: Changing server language?

    Is this for a specific user or every user on the instance?



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: Dropping an IMAGE data type from a table.

    Another option would be to run an update statement to set the column to null and then drop the column.



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: Dropping an IMAGE data type from a table.

    When looking at the database with the taskpad view in Enterprise Manager it was still saying the data in use size was the same as before.

    Just to clarify. After dropping...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: String Functions

    I completely agree. For example i now know to use parsename instead of CHARINDEX AND SUBSTRING to sort out the octets. 🙂



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: String Functions

    declare @ip varchar(15)

    select @ip='1.10.20.30'

    select substring(@ip,(charindex('.',@ip)+1),(len(@ip)-(CHARINDEX ('.',@ip) + CHARINDEX ('.',REVERSE(@ip)))))



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: Scheduling a DTS Package to run daily

    When you execute the job manually it is running under your user context. When scheduled it is running in the SQL Service account user context. Does the SQL Service account...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: Join To Find Exclusion

    select a.* from customera a

    join customerb b on (a.company+a.zipcode<>b.company+b.zipcode)



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: RaiseError() Output ???

    That would be dependent on the application error checking routines.



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: RaiseError() Output ???

    0 to 10 informational messages

    11 to 16 user problems example, error message returned invalid update query

    17 ...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: TRN Files

    Are you adding all the files at once under the restore "From Device" radio button?



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: avoiding to print nulls in select queries

    This should do it.

    ISNULL([CHECK EXPRESSION],[REPLACE STRING])



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: Urgent! - How to extract number from a string

    How about this. Might be a bit long winded though. This will pull out 742.0 of the following strings

    'On 742.0 Evergreen Terrace'

    'The number is at the end 742.0'

    ' 742.0 Evergreen...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: SQL 2005 master.6, model.6 etc files in Windows\Temp folder

    Suppress the backup software from backing up the temp directory. That may stop your issue.



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: SQL 2005 master.6, model.6 etc files in Windows\Temp folder

    Is this third party tool for SQL or for the OS?

    For example litespeed uses a number of volume shadow copies and then compresses these together in a single compressed file....



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: read statements

    You will only be able to see current processes with this. If you setup a trace you will capture all the events from start to the finish of the trace.



    Nuke the site from orbit, its the only way to be sure... :w00t:

Viewing 15 posts - 46 through 60 (of 84 total)