Forum Replies Created

Viewing 15 posts - 8,371 through 8,385 (of 14,953 total)

  • RE: BETWEEN in SQL Variables

    "Between" doesn't do what you want it to do. I'm not sure what you want it to do, but it isn't used for assigning values. It's used to...

  • RE: Query Help

    Take a look in Books Online (or MSDN) for "Common Table Expression". Specifically, you want to look at Microsoft's examples for a hierarchy, using a recursive CTE. It's...

  • RE: What's Your Education Worth?

    Since childhood, I've always spent a huge percentage of my time educating myself. It's fun, effective, and I get to study what I consider interesting and at my own...

  • RE: Don't Build a Monitoring System

    I worked out the ROI and cost-of-implementation for buying monitoring software vs building it ourselves. Buying would, long-term, cost less, and short-term, be in place immediately, while building would...

  • RE: 35K

    george sibbald (9/14/2009)


    Its not really the point of the editorial but I also was wondering what the DR strategy was for this data centre.

    I presume there is a duplicate somewhere?...

  • RE: BOL Syntax Frustration

    The ::= means "replace this placeholder with one of these options", basically.

    Here's the syntax you're looking for:

    use master;

    go

    alter database proofofconcept set offline;

    "proofofconcept" is the database name. You'll have to...

  • RE: SQL Server Injection Attacks

    Sound judgement, there.

    As Dilbert's Pointy-Haired-Boss once said, "100% of employee sabotage is by employees".

  • RE: SQL Server Injection Attacks

    It depends on how you implement your calls to the server, and how you build your stored procedures.

    For example, if you build an SQL string in ASP.NET, and then execute...

  • RE: create table, procedure, view on 2 or 3 databases when its created on one database

    Suleman, what kind of objects are you trying to create in these databases? Are you trying to auto-create everything the devs create in the base database, or just some...

  • RE: Are the posted questions getting worse?

    Dave Ballantyne (9/14/2009)


    Matt Whitfield (9/14/2009)


    Bob Hovious (9/14/2009)


    It means Ni?

    Does it always?

    No, not when the knights who say ni are no longer the knights who say ni, but the knights who...

  • RE: SQL JOINS

    You could use correlated inline queries.

    select Col1,

    (select ColA

    from dbo.Table2

    where ColB = Table1.Col2) as ColA

    from dbo.Table1;

    This is even worse...

  • RE: i want restore a sql200db to sql2005.

    Restore the database, just like you would in any other case, so far as I know.

  • RE: SQL JOINS

    You could insert the data from the first table into a temp table that has all the columns you want to end up with, then use update commands to pull...

  • RE: Are the posted questions getting worse?

    ta.bu.shi.da.yu (9/11/2009)


    The red one...

    I nearly choked when I saw that 🙂

    BTW, on a more serious note: I know there are a lot of Americans on this site. I'd just like...

  • RE: Are the posted questions getting worse?

    ta.bu.shi.da.yu (9/11/2009)


    Paul White (9/11/2009)


    Gianluca Sartori (9/11/2009)


    Paul White (9/11/2009)


    Though I must say that I agree with Ian Scarlet, Silverfox, and teletubby.

    Who's Teletubby?????

    Did I miss something?

    Sorry - ta.bu.shi.da.yu 🙂

    I don't mind people...

Viewing 15 posts - 8,371 through 8,385 (of 14,953 total)