Forum Replies Created

Viewing 15 posts - 181 through 195 (of 295 total)

  • RE: XML Column - Table Processing takes forever

    Select * From will do a full table scan, so indexes wont be used.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Using dynamic query in SQL Reporting Services 2000

    In data view click on the ... next to the Dataset name and on the fields tab add the fields manually. Fields will only be added automatically from non dynamic...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Send string list as stored procedure parameter

    If you populate a temporary table with @BPCode then you can use where ShortName in (Select Shortname from #temptable)

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Miant Plan -batch file execution

    If you run the command on its own through Management Studio what message do you get?

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: DTS-like operation in SQL CE 2.0

    See http://www.sqlservercentral.com/scripts/Backup+%2f+Restore/30138/ this could be adapted

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: DTS-like operation in SQL CE 2.0

    See http://www.sqlservercentral.com/scripts/Backup+%2f+Restore/30138/ this could be adapted

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: need help with changing the case of text

    Try SELECT UPPER('John Doe')

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: What do you do with a new SQL Server?

    Right click on the properties of the event and look at history. Has the alert ever been triggered? The history will tell you. If it has fired the failure to...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: What do you do with a new SQL Server?

    Try a different alert, I'll be honest I have been lucky enough not to come across any deadlocks in SQL Server 2005 databases I've supported - things have been looking...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: What do you do with a new SQL Server?

    Check checking did you enable the profile you created as per the article? Did the alert fire into the event log? do any of the other events fire?

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: What do you do with a new SQL Server?

    AndyD

    Default fill factors at 0% is fine if you have high spec’d servers and small databases that are not heavily used. In these cases also 90% won’t make a great...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Extract image from xml and save as file

    Sorted, bringing file into sql server as an image and extracting from here as a file.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Database migration checklist

    Depends on how you did the migration, you may need to check for orphan users...

    EXEC sp_change_users_login 'Report'

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Losing data in one specific table all the time

    I'd try one of the log reader tools available, to read through your logs, you may be able to download the tool for a short trial, which might be enough...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Performance Tuning meeting

    Some ideas....

    * A review of fill factors is a good one for the agenda.

    * Profile for duration and review SQL and indexes on tables on the longest running procedures.

    *...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

Viewing 15 posts - 181 through 195 (of 295 total)