Viewing 15 posts - 1,111 through 1,125 (of 7,467 total)
What has been the goal of you dropping the windows login from these instances ?
You may want to change the job-owner for these jobs to sa and/or execute their steps...
October 21, 2013 at 12:47 pm
can you double check these windows logins aren't having login auth via granted windows groups?
October 21, 2013 at 11:41 am
I would suggest to setup a bcp batch job using SQLAgent, providing the jobstep proxy account only with the needed authorisation to read the source data and write to the...
October 8, 2013 at 11:46 pm
cls
$Path = 'c:\temp\'
$RefTs = ([datetime](Get-Date -Format 'yyyy-MM-dd')).AddHours(20) # 8PM
$RefTs
# select and delete files having last write time before RefTs
get-childitem -Path $Path -Filter '*.txt' -Recurse | Where-Object { $_.PSIsContainer...
October 8, 2013 at 7:05 am
- do you need to just copy the data once ?
you could use bcp.exe to do that.
- are you sure you really want to make both sqlserver...
October 8, 2013 at 6:18 am
how a simply clever trick just blows your mind.
I wonder how many people only read this Spackle once and really got it.
I just copied it to ssms and walked it...
October 4, 2013 at 1:18 am
I haven't used the builtin maintenance plan since early sql2000.
I use sql server backup devices. http://technet.microsoft.com/en-us/library/aa173665(v=SQL.80).aspx
Maybe that's a path you may want to investigate to overcome this issue.
October 3, 2013 at 11:53 pm
some may consider the extra space a security feature :crazy:
Simplest way is to modify the job step command and remove the space.
If you cannot rename the database (which may need...
October 2, 2013 at 11:59 pm
it depends on the SLA for "high available".
Of course, mirroring can be configured to be synchronous, but is depricated for future versions, because Always On is the "new" kid in...
October 2, 2013 at 11:53 pm
did you try:
select c.*, u.*
FROM Company c
INNER JOIN SAMINC.dbo.ARCUS y
on y.IDCUST = c.comp_companyid
inner JOIN SAMINC.dbo.ARSAP z
on z.CODESLSP = y.CODESLSP1
inner...
October 2, 2013 at 12:42 am
start it all running the Upgrade Advisor for SQL2008R2!
This free tool will notify for potential issues.
have a look at Using Upgrade Advisor to Prepare for Upgrades
September 27, 2013 at 10:37 am
that's the text of the compiled object. So if that is (part of) a stored procedure it will show the sproc ddl ( unless it is encrypted ).
Using the...
September 19, 2013 at 2:02 am
- not every execution produces a recompile. ( that's the goal with cached plans )
I haven't implemented the xevents version to monitor it all, but I'll have a go if...
September 19, 2013 at 12:32 am
if you rdp the source sql instance ( where you want to define the linked server ) can you use sqlcmd / SSMS ( if installed ) and connect to...
September 18, 2013 at 5:16 am
Viewing 15 posts - 1,111 through 1,125 (of 7,467 total)