Forum Replies Created

Viewing 15 posts - 3,241 through 3,255 (of 7,168 total)

  • RE: error msg: Could not continue scan with NOLOCK due to data movement.

    For next time, know that you posted in a SQL Server 2008 forum. There is a SQL 2000 forum on this site as well.

    OK, this was a known issue in...

  • RE: error msg: Could not continue scan with NOLOCK due to data movement.

    What build of SQL Server?

    SELECT SERVERPROPERTY('Edition') AS Edition,

    SERVERPROPERTY('ProductVersion') AS ProductVersion,

    SERVERPROPERTY('ProductLevel') AS ProductLevel;

    Have you...

  • RE: x-cmdShell access

    Jeff Moden (9/5/2012)


    opc.three (9/5/2012)


    That aside, none of what you said speaks to why one would want to incur the additional risk of having xp_cmdshell enabled.

    First, done properly, there is no...

  • RE: Roles/Permissions for 3rd Party Providers doing Rollouts/updates

    I recommend running in FULL recovery and taking lots of backups. If the rollout is multi-phased or prolonged then take a FULL backup at each logical stopping point. You can...

  • RE: x-cmdShell access

    Jeff Moden (9/5/2012)


    opc.three (9/4/2012)


    Jeff Moden (9/4/2012)


    opc.three (9/4/2012)


    All sysadmins can execute any commands they wish and those commands will run in the context of the SQL Server service account, i.e. you...

  • RE: Temp tables vs table variables vs "permanent" tables

    A great supplement to BOL:

    Comparing Table Variables with Temporary Tables By Wayne Sheffield[/url]

  • RE: Using OPENROWSET to execute stored procedure in temp table

    DataAnalyst011 (9/4/2012)


    Does OPENROWSET create another instance to execute the sp against?

    Yes, it does. It creates a new session outside the database engine as if it were any other data client...

  • RE: Varchar(max) not storing all data

    You can output is as XML in grid view so it will appear as a link:

    SELECT YourColumnName as [processing-instruction(x)]

    FROM YourSchemaName.YourTableName

    FOR XML PATH('');

    Then click the link to see the entire text.

    The...

  • RE: x-cmdShell access

    Jeff Moden (9/4/2012)


    opc.three (9/4/2012)


    All sysadmins can execute any commands they wish and those commands will run in the context of the SQL Server service account, i.e. you lose the ability...

  • RE: temp table vs data flow task on physical table

    If you need fresh data then read the file each time in separate Data Flow Tasks, do the transformations you need and send the data downstream. This keeps most of...

  • RE: x-cmdShell access

    zsafakhah (9/4/2012)


    Dears all

    how can i restrics xp_CmdShell accesss to run some command?

    for example xp-cmdshell can not run format syntax or delete format?

    how is this possible?

    Best Regards,

    zohreh

    You cannot restrict the commands...

  • RE: temp table vs data flow task on physical table

    I still don't know which two approaches you're comparing. Maybe if you explained your end-to-end process it will be more clear as to which two approaches you're having doubts about.

  • RE: Why is INSERT INTO faster than INSERT

    hanrahan_tim (9/4/2012)


    Is it possible that when the INTO and fields are added this saves SQL from having to map them out perhaps?

    No. There is no difference.

  • RE: odbcping

    A simple PowerShell script that opens a connection based on a DSN name would be my first thought to replace it.

  • RE: Update BOL?

    Microsoft is guiding everyone into using the online version. I think I read somewhere that they have or will stop producing the downloadable version at some point.

    SQL Server 2008 R2...

Viewing 15 posts - 3,241 through 3,255 (of 7,168 total)