Forum Replies Created

Viewing 15 posts - 691 through 705 (of 1,170 total)

  • RE: storedprocedure

    What do you pass to the @TrainerID argument when you have multiple selection?

  • RE: Error While uploading Flat File

    Idea:

    As you describe, you already know which file is causing the fail.

    You can create a separate package just for that file and add a data tap for that package (see...

  • RE: How to kill Job and associaed command dynamically(through commands)

    By running the job it starts a session. What you need is find the spid and execute

    KILL spid

    USE msdb

    GO

    EXEC dbo.sp_help_jobactivity

    GO

    you can find the job and see some details of it.

    Regards,

    IgorMi

  • RE: Autogrowth, shrink and database performance

    IT researcher (1/22/2014)


    I have already asked some questions about Autogrowth and shrink. But I have some doubts related to it.

    1)I have a database which grows about 300 MB every...

  • RE: ACID Properties Question

    bandarimohan 57273 (1/21/2014)


    ACID property can be allowed for TempDB ?

    I don't know where is that property, but D-Durability cannot be guarantied for tempdb.

    Regards,

    IgorMi

  • RE: Which is the faster ?

    Nadrek (1/21/2014)


    Jeff Moden (1/20/2014)


    devu (1/20/2014)


    Hi all,

    I want to know which is the faster group of select statement or stored procedure with same select statements ?

    Thanks.

    My question would be, why don't...

  • RE: Need Help?

    bala2014 (1/21/2014)


    fixed

    Than, why do you need a code to iterate the tables? It does not make a difference iterating the tables constructing dynamic insert-statements and execute them compared to writing...

  • RE: Need Help?

    Is the number of tables for inserting into the Fact table fixed or flexible?

  • RE: Aggregate function with DATE TYPE column

    sql_ques (1/20/2014)


    Hi,

    I need to get monthly count of number of tickets closed. Is it possible to use COUNT() with DATETYPE field?

    SELECT

    ID,

    Environment

    ,count((RT.[type])) As 'Type'

    ,convert(varchar(5),SD.StartDate,110) AS [Month]

    FROM TABLENAME

    GROUP BY Date,...

  • RE: Need Help?

    Hi,

    I can suggest to you considering the Multicast component in SSIS. It makes multiple logical copies of data and can deliver it to multiple destinations.

    Regards,

    IgorMi

  • RE: Estimated Total Subtree Cost

    Hi,

    The plan's EstimatedTotalSubtreeCost is equal to the EstimatedTotalSubtreeCost for the NodeId with zero value.

    Regards,

    IgorMi

  • RE: 'ad hoc distributed queries'

    No. It takes effect immediately.

    Regards,

    IgorMi

  • RE: Azure SQL Database

    Nice question.

    There are more than 20 features that are not supported.

    I like SQL Azure.

    Thanks,

    IgorMi

  • RE: MAXDOP Setting

    Grant Fritchey (1/6/2014)


    No, it's not a good idea to change it at the server level. Most of the time you get parallelism on queries that are not complex enough to...

  • RE: Drillthrough

    Lokesh Vij (1/8/2014)


    IgorMi (1/8/2014)


    IgorMi (1/8/2014)


    Lokesh Vij (1/7/2014)


    Nice question Igor, but I am little confused about "Microsoft Naive Bayes Algorithm", as per the below link, this algorithm supports drillthrough as well.

    Link:...

Viewing 15 posts - 691 through 705 (of 1,170 total)