Forum Replies Created

Viewing 15 posts - 19,126 through 19,140 (of 19,560 total)

  • RE: Authentication, web.config, database on another server

    halifaxdal (11/16/2009)


    Hi Folks,

    I have an asp.net web application, I need to connect to another department to retrieve data there, it's a SQL database (not sure if it is 2k5 or...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Are the posted questions getting worse?

    GSquared (11/16/2009)


    I would like to apologize for my answers to all three of those... but I won't. 😀

    I...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: running databases on a SAN

    or does the singular just correlate to with (without the out since without is plural)?

    What does that make of the SANS Institute?

    Just pondering...

    Seriously though - check with your server admin...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Are the posted questions getting worse?

    Lynn Pettis (11/16/2009)


    CirquedeSQLeil (11/16/2009)


    Lynn Pettis (11/16/2009)


    Digs posted a project spec here on ssc that he posted on GetAFreelancer.com, so for S & G's (plus I am trying to earn some...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Today's Random Word!

    teriyaki

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Are the posted questions getting worse?

    Lynn Pettis (11/16/2009)


    Digs posted a project spec here on ssc that he posted on GetAFreelancer.com, so for S & G's (plus I am trying to earn some extra cash as...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Are the posted questions getting worse?

    Lynn Pettis (11/14/2009)


    Want to talk about broken records?

    Spot ON. I kind of think of it as an incoherent rambling soap-box.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Solving the "Running Total" & "Ordinal Rank" Problems (Rewritten)

    I have to agree with Lynn and Flo on this one. As much as it might be nice to code generically so the code will perform on all DBMS's,...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Roles of development DBA

    I think it largely depends on your company.

    Many places they are one and the same. The DBA designs the databse, supports production, and reviews code.

    Some places they distinguish between...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: reorganise/rebuilt index online script needed...........

    SET @command = N'ALTER INDEX ' + @indexname + N' ON ' + @schemaname + N'.' + @objectname + N' REBUILD' WITH ('ONLINE = ON') ;

    Should be

    SET @command = N'ALTER...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: reorganise/rebuilt index online script needed...........

    IF @frag >= 30.0

    SET @command = N'ALTER INDEX ' + @indexname + N' ON ' + @schemaname + N'.' + @objectname + N' REBUILD';

    In the above script you would add

    ...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Database Server Documentation

    You can also try SQLSpec. We are in the process of evaluating that currently. It can build some nice "webby" reports.

    http://elsasoft.org/index.html

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Physical file name

    Tara-1044200 (11/13/2009)


    SELECT Name [Database], Physical_Name [Physical file], size*8 [Size_KB] FROM sys.master_files

    where Physical_Name like '%mdf' order by name

    From the above query i am getting the list of databases but 5...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Count(*)

    Thanks Gail.

    With that note, the query would also change (when using sys.objects).

    Select OBJECT_NAME(p.object_id) as TableName,SUM(rows) as NumRows,index_id

    From sys.partitions p

    Inner Join sys.objects o

    on p.object_id = o.object_id

    Where index_id in (0,1)

    And o.type =...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Today's Random Word!

    dragee

    Why?

    Just because it has stuck with me since watching the food network the other night.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

Viewing 15 posts - 19,126 through 19,140 (of 19,560 total)