Forum Replies Created

Viewing 15 posts - 331 through 345 (of 366 total)

  • RE: temp table in sysobjects

    Below query returns the required result:

    select * from tempdb..sysobjects where name like '#testvm%'

    Indeed Hardy21 it works, I also tried with:

    select * from tempdb..sysobjects where name like '#testvm'

    and...

  • RE: SELECT INTO with a Temp Table

    Thanks for the explanation vk-kirov and mtassin.

    Regards,

    Iulian

  • RE: To switch or not to switch

    The question is challenging and asks for more attention on details when reading, this is not one of my main strengths.

    I read the documentation, was lucky to find here:

    ...

  • RE: SELECT INTO with a Temp Table

    Thanks a lot Hugo

    Iulian

  • RE: SELECT INTO with a Temp Table

    One innocent remark that does not minimize the high value of the question. I am thinking to drop tbl1 and tb2 tables at the end of the script:

    DROP TABLE tbl1

    DROP...

  • RE: SELECT INTO with a Temp Table

    Great point. Amazing, the compiler see two creations of the #tmpID table and stops the procedure from compiling.

    Do you have at hand some best practices for using DML statements?...

  • RE: Data Typing Quandry

    Great question, thank you.

    I answered wrong by assuming there is no place for compressing bit fields more than it already does, in this case to one byte, I should have...

  • RE: Using OVER with an Aggregate Function

    Thank you UMG, undeed great statistics.

    Looking at the alternative with nested select I tend to chose the GROUP OVER, it seems to me more elegant.

    Regards,

    Iulian

  • RE: Sending E-Mail from SQL 2008 Express

    Nice one Andrew. I can hardy wait to test it.

    Regards,

    Iulan

  • RE: Using OVER with an Aggregate Function

    Nice question, thank you.

    It works for me.

    Iulian

  • RE: Incremental additions

    Great question, thanks

    Here is a reference to the compound operators: http://msdn.microsoft.com/en-us/library/cc645922.aspx

    Regards,

    Iulian

  • RE: Forum Introduction

    Sounds good.

    I would like to make some exercises on this regard.

    What do I need?

    Thanks

    Iulian

  • RE: Forum Introduction

    Hi Raunak, Great idea with this forum

    For the beginning:

    what is the difference/relationship between Business Intelligence and Business Analytics?

    Thanks,

    Iulian

  • RE: Inventory of the reports and subscriptions on MS Reporting Server

    I found this query by googleing and it works, I have got the inventory of the reports.

    USE ReportServer

    SELECT

    CatalogParent.Name ParentName,

    Catalog.Name ReportName,

    ReportCreatedByUsers.UserName ReportCreatedByUserName,

    Catalog.CreationDate ReportCreationDate,

    ReportModifiedByUsers.UserName ReportModifiedByUserName,

    Catalog.ModifiedDate ReportModifiedDate,

    CountExecution.CountStart TotalExecutions,

    ExecutionLog.InstanceName LastExecutedInstanceName,

    ExecutionLog.UserName LastExecutedUserName,

    ExecutionLog.Format LastExecutedFormat,

    ExecutionLog.TimeStart LastExecutedTimeStart,

    ExecutionLog.TimeEnd LastExecutedTimeEnd,

    ExecutionLog.TimeDataRetrieval...

  • RE: reports on report manager

    Hi, Did you tried to restore the database from the backup?

    Regards,

    Iulian

Viewing 15 posts - 331 through 345 (of 366 total)