Viewing 15 posts - 286 through 300 (of 1,409 total)
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...
October 23, 2014 at 6:40 am
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...
October 23, 2014 at 6:16 am
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...
October 23, 2014 at 6:07 am
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...
October 23, 2014 at 4:57 am
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 =...
October 21, 2014 at 8:08 am
Kummu (10/16/2014)
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...
October 16, 2014 at 2:09 pm
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...
October 16, 2014 at 5:12 am
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...
October 16, 2014 at 3:50 am
ramana3327 (10/15/2014)
Thank youIn 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...
October 15, 2014 at 1:35 pm
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...
October 15, 2014 at 1:16 pm
PearlJammer1 (10/9/2014)
October 9, 2014 at 5:14 am
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...
October 9, 2014 at 4:36 am
Perry Whittle (10/7/2014)
HanShi (10/7/2014)
October 7, 2014 at 11:05 am
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...
October 7, 2014 at 8:17 am
Viewing 15 posts - 286 through 300 (of 1,409 total)