Forum Replies Created

Viewing 15 posts - 11,056 through 11,070 (of 49,566 total)

  • RE: Startup Parameter issue in SQL server 2012

    The error message tells you clearly that SQL doesn't have permission. You need to go to that folder and grant the SQL Server service account full rights to the folder...

  • RE: Startup Parameter issue in SQL server 2012

    Looks pretty clear

    Could not open file D:\DB\Data\master.mdf for file number 1. OS error: 5(Access is denied.).

    SQL doesn't have permission on the file, or probably the folder.

  • RE: Memory taken by procedure

    The plan isn't stored in XML, that's just how SQL gives it to you, not its internal representation.

    You're talking about 120kB that will be stored in cache once per procedure.

  • RE: sql help table join

    SQL_Kills (11/6/2013)


    Select

    t1.warehouse,

    t2.warehouse,

    t1.product,

    t2.product

    From productOld t1 full outer join productNew t2

    on t1.warehouse = t2.warehouse

    and t2.product = t2.product

    where

    t2.product IS NULL

    Is...

  • RE: understanding the need of database snapshot

    sej2008 (11/6/2013)


    What I want to know is what steps should be taken to protect any data loss in between the snapshots that we take along with routine backup and restore...

  • RE: Memory taken by procedure

    You can query sys.dm_exec_cached_plans, however I can tell you now there should be minimal difference. The differences you describe are in the T-SQL. The first phase of parsing converts T-SQL...

  • RE: understanding the need of database snapshot

    It's useful when you're about to make a bunch of changes that may need to be undone, for example a code deployment. Easier than restoring from a backup to undo.

  • RE: Concurrent fullbackups in sql server

    There's no snapshot involved in a backup, there's nothing that keeps track of changed extents during a backup process (other than the normal logging process) and changed extents are not...

  • RE: API?

    Short answer - don't. Wrong tool for the job.

    Oh you can write CLR procedures that can access web services, but that doesn't make them a good solution.

  • RE: Tempdb and performance issue

    Did you investigate and confirm that the cause of the original slowdown was TempDB contention?

  • RE: Copying database error

    Copying and restoring a backup can be automated probably easier than copying, plus all the other advantages of restoring a backup that have been mentioned.

  • RE: display order by like 1,2,3,4,5...............plz write quarie

    Jeff Moden (11/5/2013)


    I'm well aware of that. You and I have had this conversation before and I absolutely agree. I should have said "and that someone is wrong...

  • RE: Express edition Performance tunning

    If you have an instance that does have profiler, use the GUI to create the trace you want, then export the trace creation script. I don't know anyone who writes...

  • RE: Express edition Performance tunning

    Use the server-side trace procedures (sp_trace_create and related). They're there even if profiler isn't. Or use extended events.

    You can use profiler from any other edition to create the trace script....

  • RE: Express edition Performance tunning

    Pretty much the same way you do it in any other edition of SQL. There's nothing special about Express in that sense.

Viewing 15 posts - 11,056 through 11,070 (of 49,566 total)