Forum Replies Created

Viewing 15 posts - 2,836 through 2,850 (of 7,164 total)

  • RE: Connecting to Oracle from SQL 2012 Visual Studio 2010 Shell

    A related, recent post:

    http://www.sqlservercentral.com/Forums/Topic1375169-364-1.aspx#bm1375221

    I think SSDT 2012 (built on VS2010 Shell) is still only available as a 32-bit app so if using an Oracle ODBC driver you'll need to create...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Parameters in Stored Procedure

    When compiling a statement, if table referenced in the statement exists then SQL Server will validate the columns in that table, else it will employ 'deferred name resolution.' You are...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: What would be the major concerns for running WCF services and xp_cmdshell on SQL Server?

    Jeff Moden (11/2/2012)


    +1000 Orlando. Very bad use of xp_CmdShell in this case. And, if someone kills the spid that makes the call, it can't be killed unless you...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Using the WMI Event Watcher Task in SSIS to Process Data Files

    WMI tends to be a bit trickier to get working than some other methods due to security and the syntax of the WQL.

    This method, which uses a .NET class, is...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Using the WMI Event Watcher Task in SSIS to Process Data Files

    I know you checked, but all I can offer for the error is that the times I or myself have experienced the 'Invalid Parameter' issue it has been related to...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Today's Random Word!

    ACTION ITEM

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Ensuring correct permissions

    I'll throw one other technique out there that I use quite a bit. It may not handle things like verifying someone can see something in Object Explorer that they think...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Sending remote attachments using sp_send_dbmail

    OK, I think I arrived at a possible explanation of what is going on:

    Chances are the Server Proxy is not involved. I think we can attach a remote file when...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: CLR Eval function

    I had to try it for myself so here is your code ported to C#. It worked as advertised for me:

    [font="Courier New"]using System;

    using System.Data;

    using System.Data.SqlClient;

    using System.Data.SqlTypes;

    using Microsoft.SqlServer.Server;

    public partial class UserDefinedFunctions

    {

        [Microsoft.SqlServer.Server.SqlFunction]

        public...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: BCP text file is adding an extra line at the end of the file

    outsider32 (11/1/2012)


    It is on the next line after the data, there is only one return after the data.

    So i'm getting:

    Comments

    (cursor here)

    I am on version: 11.0.2100.60

    I appreciate the help!

    The written word...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: BCP text file is adding an extra line at the end of the file

    I cannot recreate the issue on 2008R2. I'll try it on 2012 later, but to make sure, what build # are you on?

    bcp -v

    should tell you

    And when you say "below...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Access question

    sunny.tjk (11/1/2012)


    opc.three (10/31/2012)


    sunny.tjk (10/31/2012)


    I can think of DENY SELECT but not sure how to implement it. I'd like to accomplish DENY SELECT to everyone except to the members of the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: CLR Eval function

    steve.laforge (11/1/2012)


    I thought you had it until I tried to add it to a function. Then I get the error 'Invalid use of a side-effection operator 'INSERT EXEC' within...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Access question

    Thanks. In the approach I detailed, if a new user is added to the db_datareader Fixed Database Role they will have permission to select the restricted column from your table...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: CLR Eval function

    Disclaimer: What I am about to show is dangerous because you're trying to execute a statement passed in by a person or application, and people and applications should never be...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 2,836 through 2,850 (of 7,164 total)