Forum Replies Created

Viewing 15 posts - 1,246 through 1,260 (of 5,394 total)

  • RE: Upgrading from SQL 2005 to SQL 2012

    That's a good strategy. Let me ask, why not ship the logs to 2012 directly?

    Also, remember that upgrading an instance is much more than just upgrading the databases: you will...

  • RE: Database collation Change

    As others have pointed out, changing the collation for a database is not simple.

    However, if you need to change it it's probably because some comparisons between columns in your database...

  • RE: Workaround for filestream with group

    Assigning a default schema to a group is not possible in SQL Server until 2012. All previous versions (including 2008 R2) do not allow this.

    Granting permissions is a whole different...

  • RE: SQL Credentials

    From BOL:

    ALTER CREDENTIAL (Transact-SQL)

    Permissions

    --------------------------------------------------------------------------------

    Requires ALTER ANY CREDENTIAL permission. If the credential is a system credential, requires CONTROL SERVER permission.

    In other words, no. Not directly at least.

    You can always wrap...

  • RE: Send Binary file stored in sql server as email attachment

    Not that I'm aware of.

    Some way you have to download the file to the filesystem, using BCP, a custom application or a CLR procedure.

    However, DBMail doesn't look to me like...

  • RE: Tables on diffrerent files

    yuvipoy (4/25/2014)


    Is it a good practise to have my tables in different files.

    Say i am having 10 master tables.

    Can i create tables each one on 10 secondary files(.ndf) in a...

  • RE: Problem when i try to Disable Publishing and Distribution

    You just need to drop the publications then.

    You can do it manually in SSMS by clicking the publication and hitting DEL.

    You can also do it in T-SQL.

    See if this helps:...

  • RE: Drop Database x Sql Server Log

    Lynn Pettis (4/24/2014)


    My question is why should it? It is captured by the default trace.

    Alexandre Araujo (4/24/2014)


    My question is why a start service like agent is logged and a...

  • RE: Confusion as to what windows service Agent and Engine are running under

    "Enterprise manager"... are you sure it's a SQL Server 2008?

    Anyway...T-SQL job steps run under the job owner security context.

    However, if the job owner is a sysadmin, the step will...

  • RE: Find and replace text for all sprocs on a server

    sp_msForEachDB would do.

    You could also check out my humble replacement[/url]

  • RE: Drop Database x Sql Server Log

    Not everything gets logged to ERRORLOG.

    Something gets logged to the default trace, something gets logged to the system health session, something is not logged at all unless captured by audits...

  • RE: Drop Database x Sql Server Log

    Log to where? SQL Server Log (ERRORLOG)?

    Remember that you also have the default trace. Something (including create/drop database) gets logged there.

  • RE: Problem when i try to Disable Publishing and Distribution

    mholguindomi (4/24/2014)


    I try to DISABLE the PUBLISHER Service in my Server

    BTW, writing all caps in forums is perceived as shouting and it is considered bad and unpolite.

  • RE: Problem when i try to Disable Publishing and Distribution

    I suspect you have no publishing/distribution to disable.

    Run this:

    SELECT name, is_published, is_merge_published

    FROM sys.databases

    If any of your databases is published, you should see "1" in the "is_published" or "is_merge_published" columns.

    If your...

  • RE: SQL Server Error 4145

    I think it's the procedure call that generates the error, not the procedure per se, unless you have dynamic code in your procedure.

Viewing 15 posts - 1,246 through 1,260 (of 5,394 total)