Forum Replies Created

Viewing 15 posts - 1,261 through 1,275 (of 1,409 total)

  • RE: Issue with Maintainance Plan

    Did you also apply SP2 for your client tools on the workstation?

    Do you get the same error if you work directly on the server instead of connecting through a workstation?

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: SQL Server Alerts

    I'm not sure but I think it will generate an overhead similar to Windows Performance Monitor. But it can also depend on the number of alerts that are generated.

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Difference between Saving Table And BAckup

    You can also copy the table to another database (or with another name within the database). That will save you time if you have to roll back. The copy of...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: question regarding performance dashboard

    You should have created a baseline (by use of counters) for you servers and database. By checking periodically the workload on the server you can notice if everything is working...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: regd order in output

    1976 (10/29/2008)


    Hi, please note there is a grouping function you should use to check whether the row is a total, not isnull function.

    And I keep on learning new stuff 😉

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: regd order in output

    The solution Seth has provided works fine. You can alter it a bit by moving the CASE from 'Colorder' to the ORDER BY if you don't want to see this...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Split a date-range into periods

    smunson (10/23/2008)


    ...the meaning of the value in the UNITS field has changed...

    Hi Steve,

    Thanks for pointing that out. But I created this sample to only simulate my data. The UNITS value...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Split a date-range into periods

    Hi Anzio,

    I have work out your solution. Maybe others can benefit from this code.

    As you allready mentioned, this solution is more generic. The TALLY table now only contains the number...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Split a date-range into periods

    AnzioBake (10/23/2008)


    It seems I can not post code to the site, I wanted to post a more generic solution

    Hi Anzio,

    Allthough the provided solution fits my current needs, I'm interested in...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Split a date-range into periods

    Thanks Mark, it works like a charm.

    I knew a TALLY table could bring me the solution 😀

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Export to SQL

    What about this approach...

    - create and (re-)fill a table with your data using the scheduled job

    - link the Excel-sheet with the correct template to the table

    - (automatically) refresh the data...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: SQL Profiler for Small Business Server

    Install the SQL-2005 Workstation components and be sure to include the Management Tools. SQL Profiler is part of this.

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Sql Server machine name change

    To correctly let SQL 'know' and display the changed servername you have to run the following code to update the system metadata (sys.servers and @@ServerName):

    sp_dropserver {old_name}

    GO

    sp_addserver {new_name}, local

    GO

    See the article...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: "SELECT TRIGGER"

    I agree with Barry. Just create a trace, to only select the textdata of statements (SP and T-SQL). Filter this on the databasename and "%TabelName% %ColumnName%" and you only get...

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **
  • RE: Sql Server machine name change

    Yes, you can change the name of a server running SQL Server. I did it last month regularly when setting up a new development environment. Every time without any issue....

    ** Don't mistake the ‘stupidity of the crowd’ for the ‘wisdom of the group’! **

Viewing 15 posts - 1,261 through 1,275 (of 1,409 total)