Forum Replies Created

Viewing 15 posts - 16,021 through 16,035 (of 22,211 total)

  • RE: Are the posted questions getting worse?

    Grant Fritchey (12/16/2009)


    Whoa!

    From what I can see this person has tried to demonstrate some work, but good googly moogly, who is going to read all that stuff & eval it?...

  • RE: Subquery where clause

    What about something like this?

    SELECT

    a.provcode

    ,COUNT(DISTINCT acctno) AS 'Patient...

  • RE: Subquery where clause

    I agree with Steve & Lynn, I'm confused.

    Based only on what you've said, I'd say the answer is no, you can't use the WHERE clause of the outer query within...

  • RE: Restore Permission for tables/fields

    In order to prevent a user from seeing only certain columns, you'll need to either limit the users access through a view or a stored procedure. If you give them...

  • RE: Cursor problem

    Two things come to mind, but I'm not sure either is applicable. It could be contention, other processes interfering with yours, although I would think you'd either see errors or...

  • RE: Are the posted questions getting worse?

    Whoa!

    From what I can see this person has tried to demonstrate some work, but good googly moogly, who is going to read all that stuff & eval it? Anyone want...

  • RE: How can I get or retrive a SA password in SQL server 2005

    There is no way to hack in and retrieve the 'sa' password.

  • RE: SQL ERROR 7886

    First question is, are you running read_uncommitted? If so, you might need to reconsider that choice. I don't recommend using that connection setting for most systems anyway.

    If the read is...

  • RE: Tools for World Wide Monitoring...

    I've used Idera's Diagnostic Manager and Microsoft's Operations Manager both to moniter servers in disparate locations. They work fine as long as they can connect to the machines. Our situation...

  • RE: Connecting a Remote Sql Server & Accessing

    However, joining tables across servers, let alone across oceans, can be very problematic from a performance standpoint. Frequently with linked servers you'll see all the data from the first server...

  • RE: VS2005 versus VS2008??

    It really depends. We have systems still being worked on in VB6 that are connecting to SQL Server 2008, so there's not magic requirement that says you must move up....

  • RE: data modeling

    I'm sorry, but the question is a bit vague. I'm assuming you're tasked with doing this at work and you've never done it before.

    First, you need to differentiate between new...

  • RE: Queries with different execution plan

    It's very difficult to tell precisely what's occurring when only looking at images. There is a lot of information contained within an execution plan, not simply the graphics. In the...

  • RE: Managing Stored Procedures

    Tables, foreign keys, you name it and we've got it in source control.

    The reason we don't use projects and SSMS is simply because there's no way to automate a build...

  • RE: Managing Stored Procedures

    You also need to be very careful about versioning and labelling your code so that you always know what state the source is in. Then, you only ever build the...

Viewing 15 posts - 16,021 through 16,035 (of 22,211 total)