Forum Replies Created

Viewing 15 posts - 991 through 1,005 (of 1,271 total)

  • RE: Adding SQL Users

    Are you using the same account for the object explorer and for the query window?

  • RE: Adding SQL Users

    I didn't ask if you re-connected. I asked if you refreshed.

  • RE: row_number() help!

    No, you didn't say distinct, but it is in his original query and is useless when you add something like row_number to the select list.

  • RE: Facing problem with executing large-value query variable

    Post your code. Otherwise, all we can do is guess. It saves time for everyone involved if you post the code.

     

  • RE: Unable to execute a job in SQLServer Agent

    The first guess is that the new job is doing something different such as trying to access server resources that the proxy account doesn't have access to or accessing another...

  • RE: Help urgently needed with timeout on "RESTORE DATABASE"

    Any reason why you're not connecting with Query Analyzer?

  • RE: row_number() help!

    Actually, PatIndex does need the wildcards as it performs a pattern search much like the keyword LIKE. Without the wildcards, the entire strings would have to be exact matches. You...

  • RE: Duplicate records in two tables.

    Since you are using SS 2005, you can do the following as well:

    Select Field1, Field2, Field2, ..... FieldN From dbo.a

    Except

    Select Field1, Field2, Field2, ..... FieldN From dbo.b

     

    This will compare the...

  • RE: Editor in Chief

    My first thoughts when I read this was that it was a really great thing for those of you that built this site. You've seen your hard work turn into...

  • RE: Question of the Day for 24 Nov 2006

    Then you wouldn't be using a Shared Scalable Database. This isn't just generic label for a concept, it is specific functionality in SQL Server 2005. According to the limitations of Database...

  • RE: Urgent Question

    As we say in my hood, "True dat!!"

  • RE: What is the "N" prefix for in a ctrierion?

    In some cases it is necessary.

    This will give you an error:

    Exec sp_executesql 'Select @@ServerName'

    This won't:

    Exec

  • RE: SSMS Client Tools

    No. And I don't understand your trepidation about using SS SE. If you want to make sure someone else only performs the client tool installation, put the following command in...

  • RE: SSMS Client Tools

    No. And I don't understand your trepidation about using SS SE. If you want to make sure someone else only performs the client tool installation, put the following command in...

  • RE: Adding SQL Users

    Did you try refreshing the Object Explorer? Right click on the server name and click refresh.

     

Viewing 15 posts - 991 through 1,005 (of 1,271 total)