Viewing 15 posts - 1,606 through 1,620 (of 6,401 total)
Might be an issue with 2016, you running the most recent CTP?
Not had chance to install and play with 2016 yet so all stabs in the dark.
December 15, 2015 at 2:41 am
Try running IE as admin to get around UAC, if that's your problem question with you sysadmins / security personnel as to weather or not UAC is a requirement for...
December 15, 2015 at 2:16 am
Something like the following
;with cte as
(
select
row_number() over (partition by t1.pid order by t1.pid, t2.flag) as RN,
t1.pid,
t1.name,
t1.amount,
t2.subnum,
t2.flag
from
t1
inner join
t2
on t1.pid = t2.pid
)
select
case when rn = 1 then pid else 0 end as...
December 15, 2015 at 1:31 am
Stuart Davies (12/14/2015)
Ed Wagner (12/13/2015)
TomThomson (12/12/2015)
Ed Wagner (12/11/2015)
IPOCapital
Investment
Banker
recession
December 14, 2015 at 4:45 am
Not going to stand one out from the other, they are all good tools, they all monitor, they all do the same thing, just in different ways and allow for...
December 14, 2015 at 4:24 am
shamshad.ali (12/14/2015)
The list you mentioned is sorted by best one on top or it is mixed?
Mixed, as detailed, try them all out, they all do the same but different, they...
December 14, 2015 at 4:12 am
Take a look at
Red-Gate SQL Monitor
Idera Diagnostic Manager
Dell Spotlight on SQL Server
Dell Foglight
SQL Sentry Performance Adviser
ApexSQL Monitor
Prices vary, and will vary on bulk purchasing so prices are never usually given...
December 14, 2015 at 2:21 am
Assuming you want to create the script in SSMS on the same server where the backups are taken from, take a look at the backup tables in MSDB to dynamically...
December 11, 2015 at 8:03 am
Remove the ' from around the hex value
select * from sysjobsteps where job_id = 0xBEB303926F0CE848BA3F9858417DB773
The hex value is the GUID converted to hex and binary is passed in without quotes...
December 11, 2015 at 7:48 am
Stuart Davies (12/11/2015)
crookj (12/10/2015)
Ed Wagner (12/10/2015)
Revenant (12/10/2015)
Ed Wagner (12/10/2015)
djj (12/10/2015)
Old
Experience
Hendrix
Haze
Purple
Rain
Desmond
December 11, 2015 at 4:39 am
Then monitor what is using TempDB and define if this is normal or not.
If not go speak to the person who is causing the issue and work with them to...
December 11, 2015 at 2:17 am
Yes defiantly looks like a double hop issue.
Check with your domain admins, that the SQL Server accounts have trusted for delegation rights and that the correct SPN's have been set...
December 11, 2015 at 1:53 am
Log growth is normal.
Is the growth rate your seeing normal, who knows.
You will need to monitor whats using TempDB to see whats causing the log growth, maybe you had a...
December 11, 2015 at 1:51 am
Gazareth (12/10/2015)
richardmgreen1 (12/10/2015)
The mirrors will be snapshotted for use in reporting.
We need the data to run various reports on (that's on thr BI Edition server).
The...
December 11, 2015 at 1:49 am
Ah ok, that makes more sense.
In theory it should work, but as John has already mentioned mirroring is now a depreciated feature.
I would take a look at Log Shipping instead...
December 10, 2015 at 9:12 am
Viewing 15 posts - 1,606 through 1,620 (of 6,401 total)