Forum Replies Created

Viewing 15 posts - 286 through 300 (of 1,409 total)

  • RE: Backup, Mirror, Snapshot, Cubes,.. What should I have to use?

    denisribeiro (10/23/2014)


    Is there any good article or tutorial that talk about ETL (SSIS)?

    You can search the internet for videos, whitepapers and articles about SSIS. But SQL ServerCentral has the stairways...

  • RE: automate daily backup

    On the internet you can find many custom scripts and solutions for database backup (many incuding database maintenance). Ola Hallengren https://ola.hallengren.com/ has a highly recommendedd solution, but you can find...

  • RE: SQL Server 2014 Management Studio Backup

    You could setup a "maintenance plan" using SSMS for database maintenance. This is an easy wizard to setup basic maintenance (including backup). Don't just check all the options, but read...

  • RE: Syntax

    First of all: there's no need to put the SERVERPROPERTY in a subselect. You can place it in the outer SELECT.

    Second: the EXCEPT is similar to the NOT IN statement...

  • RE: Trace File

    First pauze the trace, then stop it. Stopping it will also remove the trace definition.

    -- pauze trace

    EXEC sp_trace_setstatus 2, 0-- sp_trace_setstatus [ @traceid = ] trace_id , [ @status =...

  • RE: Previous backups invalid

    Kummu (10/16/2014)


    Thanks for your reply.

    I'm using SQLSafe for backups, when recovery model is changed from simple to full or full to simple and then try to run a diff/log my...

  • RE: More Records After Filtering

    It doesn't sound logical. Can you extract the additional records from the second query? Maybe if you take a look at them it will show you the logic behind why...

  • RE: Previous backups invalid

    Changing the recovery model from FULL to SIMPLE would break the LOG-chain. This implies a point-in-time restore after this moment is not possible anymore. All previous FULL and DIFF backups...

  • RE: Trace File

    ramana3327 (10/15/2014)


    Thank you

    In my running trace I can see

    exec sp_trace_setstatus @TraceID,1.

    In final it showed me TraceID=3

    So if I run

    EXEC sp_trace_setstatus 3, 2

    It will stop the trace

    If your trace is...

  • RE: Trace File

    You can define a specific end time when you start the trace. But it's also possible to stop the trace through code (using sp_trace_setstatus).

    When the trace is running, there are...

  • RE: user permissions after restore

    PearlJammer1 (10/9/2014)


    Thanks for the reply. What you describe is exactly what I thought. Would the following link help - It creates the logins from one server and you then run...

  • RE: T-SQL

    The second query only accesses one table, so it will likely use less resources. But if you expand the NOT IN list with more values there would be a break-even...

  • RE: user permissions after restore

    Every time you restore a backup to another server, all SQL-users within that database will be loosing the link to the logins unless the SID of both the login and...

  • RE: SQL Server Authentication Error

    Perry Whittle (10/7/2014)


    HanShi (10/7/2014)


    If you (or the application) are not able to use Windows accounts (i.e. Windows integrated security), you need to change the authentication setting of the SQL instance...

  • RE: SQL Server Authentication Error

    Perry Whittle (10/7/2014)


    the message details the problem exactly. The instance is configured for Windows auth only, can you login with a windows account?

    If you (or the application) are not able...

Viewing 15 posts - 286 through 300 (of 1,409 total)