Forum Replies Created

Viewing 15 posts - 541 through 555 (of 9,641 total)

  • RE: Deleting the foreign key reference

    If you have a foreign key defined on a column you cannot leave a value in the column that is not in the referenced table. Here are your options:

    1....

  • RE: SQL Task Scheduler

    If the server or SQL Agent is not running when the job is scheduled to run it will not run until the next scheduled time when the server/SQL Agent is...

  • RE: Are the posted questions getting worse?

    rodjkidd (11/13/2014)


    As Jack mentioned the Summit, and about seeing me nearly every day, I had a quick look through the photos I took...

    Jack in community zone / teacher mode 😀

    Rodders...

    I...

  • RE: Are the posted questions getting worse?

    Wow, the thread has been quiet lately.

    Had a great time at the PASS Summit last week where I got to see many threadizens. Ran into Rodders the...

  • RE: Clearing Plan Cache

    SQL Guy 1 (11/13/2014)


    zedtec (11/13/2014)


    The interaction between application and database becomes slow all of a sudden.

    I have run a trace but no slow queries found (all running under 5...

  • RE: Disk size still the same after truncate partition procedure

    Truncating a table or deleting data from a table does not release space from to the operating system from the database file(s), if does make that space available for re-use...

  • RE: Unused indexes, should I delete them?

    You can find the last SQL Server restart using sys.dm_os_sys_info and the sqlserver_start_time column.

    Before you DROP any indexes you need to:

    1. Save the create scripts off somewhere.

    2. Check...

  • RE: Clearing Plan Cache

    zedtec (11/13/2014)


    There are no slow running queries.

    So if there are no slow running queries what is the definition of slow performance?

    Are you collecting any metrics to determine what might be...

  • RE: Can Cluster Index improve Performance?

    zahid.nawaz (11/13/2014)


    Here is the result of Fill Factor query.

    schemaName, tablename, indexname, fillfactor

    dbo Items ...

  • RE: difference between covering index and index with included columns

    PearlJammer1 (11/13/2014)


    What is the difference between the wide index already on the table, and if I where to alter the index by moving the fields from the key into 'included...

  • RE: Monitoring Create Index

    That's the actual creation of the index. I believe the percent_complete column in sys.dm_exec_requests is updated for CREATE INDEX so you can monitor it using that. I use...

  • RE: Can Cluster Index improve Performance?

    zahid.nawaz (11/13/2014)


    @jack-2 Corbett: what do u mean about to adjust fill factor? should it not be 80% of page?

    You state that the pages are 80% full when you check fragmentation,...

  • RE: Please help - Date Overlapping

    Eirikur Eiriksson (11/12/2014)


    Quick solution for educational and entertainment purposes (read "spanner in the works") using slight modification of Jack Corbett's data preparation.

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    IF OBJECT_ID(N'dbo.TBL_DATES') IS NOT NULL DROP...

  • RE: Triggers with Linked Server

    manie (11/13/2014)


    Yes, Jack I agree fully that it is madness to do triggers like this but that is what the client wants and that is what they are going...

  • RE: Triggers with Linked Server

    Sean Lange (11/12/2014)


    Without more details it is impossible to say. It may be permissions for the new table?

    I'd have to agree with Sean on this one, that there is something...

Viewing 15 posts - 541 through 555 (of 9,641 total)