Viewing 15 posts - 1,591 through 1,605 (of 6,395 total)
Are BizTalk and SQL on the same box? If yes, then you could potentially run into an issue if MSDTC wants to use one of the SQL Ports
December 21, 2015 at 2:28 am
Depends on the corruption
What is the full output of
DBCC CHECKDB <<DBNAME>> WITH NO_INFOMSGS, ALL_ERRORMSGS
When was your last good backup?
December 21, 2015 at 1:24 am
ALTER SCHEMA dbo TRANSFER MDCH.Hist5657;
GO
December 18, 2015 at 7:23 am
Check the job history in Job Activity Monitor or MSDB, it should detail who started the job.
December 18, 2015 at 2:24 am
It all comes down to how you want to manage security?
Can you allow the same account to connect to all databases? Does this pose a security risk to your...
December 18, 2015 at 1:58 am
Did you change the accounts back to the original service account prior to doing different ways?
IE if you used services.msc first, did you then go straight to SSCM or did...
December 15, 2015 at 8:40 am
How did you change the service account?
Services.msc or SQL Server Configuration Manager?
December 15, 2015 at 8:32 am
This isn't a SQL Express install by any chance is it?
December 15, 2015 at 7:58 am
Will it work - Yes
But from your first post, using it for reporting, using Developer edition will breach the T&C's you accept at install time
December 15, 2015 at 7:28 am
Restore the backup as another name, then use T-SQL or SSIS (Import/Export Data Wizard) to move the data from tables in question
December 15, 2015 at 6:12 am
Have you given permissions at the root and worked them down the folder structure, or given them at the individual report level?
December 15, 2015 at 3:04 am
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
Viewing 15 posts - 1,591 through 1,605 (of 6,395 total)