Forum Replies Created

Viewing 15 posts - 5,911 through 5,925 (of 7,501 total)

  • RE: user tables in master db

    - generaly it's not a good practise to create userobjects in system databases. (master, msdb, modeldb)

    - also when you create a login or grant connect to a server, be sure...

  • RE: AutoShrink Feature

    No ! Because :

    - you never know when it's going to decide to shrink.

    - the shrink operation will have it's impact on the system and for the users

    - your database...

  • RE: index once with 2 keys or have 2 indexes with each key ? Confused

    If you choose for the 2-column solution put the columns first which has the most unique values ! So it filters on top of the tree

  • RE: unique column in 2 tables - interesting problem

    - as long as you keep in mind that identity may leave you some gaps

    - when you use objects with identity in parallel (insert with multiple users) you'll see...

  • RE: Change in datatypes

    - saving the storage from float to int will save you space in the parent table and in de child-tables !

    - indexes based on int will be smaler so they...

  • RE: Query is taking too long to Delete records

    just my 2ct

    - check the queryplan your delete query is using ! If it shows a scan, you're in troubles.

    - provide an index on column Expires to support the delete.

    -...

  • RE: Online restore feature in SQL Server 2005

    - AFAIK there is no "alter database xyz modify filegroup FG3 set offline"

    - Did you take a look at "Performing Piecemeal Restores " in books online ?

    - in a...

  • RE: What is Table Scan and Index Seek? ??????

    - Check out Try/Catch in Books online (BOL)

     

    - Scan / Seek see BOL "Table and Index Organization", "Reading Pages ", "Nonclustered Index Structures", "Clustered Index Structures",...

  • RE: updating the base table in an instead of trigger on a table (not view)

    - Keep in mind that what you do within a trigger is "in transaction" ! Timeouts, locking,... !!

    - keep in mind there may be more than one row involved in the...

  • RE: Restore each night

    just to add to Michael Valentine Jones ' reply  :

    don't forget to throw everyone out of the database befor you try to restore...

  • RE: Tmpdb

    1) yes

    2) that should be quit easy. At install time there are demo alerts created. They are disabled. If you didn't remove them, they should still be present.

    One of them...

  • RE: schedule a trace

    .... create a schedule task  ....

    I'd prefer to use a sqlagent job, because it captures jobinformation.

    Maybe you cannot do this because your system's...

  • RE: TempDB

    ...Could not allocate new page for database tempdb....

    You may have been running into a file allocation timeout. Sqlserver only waits for a certain time to receive a "file extended" reply...

  • RE: Tmpdb

    the growth of you tempdb must be due to usage of your sqlserver !

    Someone running huge queries, grouping-sets or sorting. Keep in mind tempdb is not persistent. Whenever sqlserver is...

  • RE: Geocoding with SQL Server 2005

    - it would look like bad code !

    - keep in mind you have no control over the availability of the counterparty !

Viewing 15 posts - 5,911 through 5,925 (of 7,501 total)