Forum Replies Created

Viewing 15 posts - 1,246 through 1,260 (of 14,953 total)

  • RE: Interesting solution needed

    If refreshing the data is a significant part of the time being consumed by this, I would suggest breaking up the data into the sets actually needed by each set...

  • RE: is there any difference between dates

    Considering implicit conversion will take place if the column datatype isn't DateTime, no, there isn't a real difference between the two, and they should get the same results.

  • RE: How to populate column with 3 random strings from a list?

    ELT() is a MySQL function. Doesn't exist in T-SQL. This is a forum for MS SQL Server, so you will probably be better off on a MySQL site...

  • RE: Interesting solution needed

    Would it be possible to automate the refreshes so that they happen off-hours?

    Replacing them with SSAS+SSRS is definitely the right path to head down. As you mentioned, you'll never...

  • RE: One Single View

    Eric M Russell (7/12/2012)


    Todd Payne (7/12/2012)


    Thanks for that example. Truth is hard, and it gets even harder when we want to communicate the truth. There is so much...

  • RE: SQL Query Help......

    Select each one separately, then use the Union All operator to stack them.

    Something like:

    select 1 as Seq, 'PAccess' as AppAccess, Name

    from dbo.MyTable

    where PAccess = 1

    Union All

    select 2, 'HAccess', Name

    from dbo.MyTable

    where...

  • RE: what is difference between master database and staging database?

    Saga... (7/12/2012)


    I mean for e.g I have database HP561CT and HP561CTstg.

    As per this demo names, i have reffered master means main HP561CT and HP561CTstg as staging database.

    Just wanted to...

  • RE: Hierarchy/Tree Structure Query

    If you want to abstract hierarchies so they can cover many types of relationships, like these examples, you do it the way you do any many-to-many relationship in a relational...

  • RE: Help on SQL query

    Jeff Moden (7/10/2012)


    @Gus,

    Ok... I've been looking at this thread for a bit for "Sam's view definition" and I'm not finding any "SAM" that posted. Did you mean "Chris' view...

  • RE: Help on SQL query

    Jeff Moden (7/10/2012)


    GSquared (7/10/2012)


    Nitpick. Modify the CTE to use a Row_Number() function call instead of an ID column, and it will still be functional with missing ID values, or even...

  • RE: Is it possible to create an audit specification based on host name?

    If you're talking about Change Data Capture (CDC), I believe that's all/nothing on a table.

  • RE: Hard Data v Gut Feel

    Revenant (7/10/2012)


    GSquared (7/10/2012)


    Steve Jones - SSC Editor (7/10/2012)


    jay-h (7/10/2012)


    SQLRNNR (7/10/2012)


    If you can show that there is data to support a decision, it is more likely to be well received...

  • RE: default date?

    You're welcome.

  • RE: Trouble with Cursors

    I used to have a manager who insisted that SQL Server itself "leaked memory", because it takes memory from the server, and doesn't give it back, even if it's not...

  • RE: Character Scramble function won't accept datetime datatype

    I can see a use for this kind of thing in generating data for a dev or QA environment. Makes it so you can parallel patterns and volume of...

Viewing 15 posts - 1,246 through 1,260 (of 14,953 total)