Viewing 15 posts - 166 through 180 (of 241 total)
I'm afraid I don't know anything about sql core. Maybe reinstall and ensure the firewall is disabled.
May 19, 2016 at 11:38 am
Are you using group policy to apply the firewall rules? Remember it takes some time for the changes to propagate. You can try forcing the policy to apply after making...
May 19, 2016 at 5:45 am
If you delete the job and recreate it does it record the history?
Are you sure no one is running dbo.sp_purge_jobhistory to clear the logs?
May 17, 2016 at 12:24 pm
They are both set to 1000. That means if the job 1 is writing 1000 rows to the job history then you won't see any records for job 2. How...
May 17, 2016 at 11:55 am
What are the values in SQL Server Agent Properties > History for
Max job history log size
and
Max Job history rows per job.
May 17, 2016 at 11:50 am
Are you referring to MSDB.dbo.sysjobhistory?
How often are the jobs scheduled to run?
If you go into the properties for the SQL Server Agent, under the History page what are the values...
May 17, 2016 at 11:33 am
Have you tried creating your view outside of the designer? if you have created a view using the designer then you can use the alter statement along with your view...
May 17, 2016 at 11:15 am
<deleted misread question.>
May 3, 2016 at 6:35 am
I'm not sure what you are asking. I wouldn't class those records as duplicates. What is it you are trying to achieve.
May 2, 2016 at 1:54 pm
Just saw the url was in your first post.
So you seem to have 3 ssrs reports being called:
http://localhost/reportserver/P2003/Cover Sheet
http://localhost/reportserver/P2003/Randomization Letter
http://localhost/reportserver/P2003/Starter Sheet
These are what...
May 2, 2016 at 1:17 pm
Remember this is RSS as in Reporting Services Script not RSS as in the web feed.
Do you know the url to your reporting services server? I would have expected to...
May 2, 2016 at 1:02 pm
What is the insert for? Are you trying to update the history record if an update has occurred or insert a new history record if an insert has occurred? If...
April 29, 2016 at 1:32 pm
Think this is what you are looking for..
sys.dm_database_encryption_keys
April 29, 2016 at 11:41 am
Also you have created a multi statement function so you need to insert into you table variable in order to return data. See below for the differences between and inline...
April 29, 2016 at 10:04 am
Try this...
select stuff((select ' ' + oap from @OAP for xml path('')),1,1,'') as myApples
April 29, 2016 at 9:42 am
Viewing 15 posts - 166 through 180 (of 241 total)