Viewing 15 posts - 886 through 900 (of 9,641 total)
How are you determining normal execution time for a job?
July 16, 2014 at 7:26 am
Those jobs shouldn't have anything in sysjobactivity if they aren't running. Why not just have your query return jobs outside your threshold by doing:
SELECT
j.job_id,
...
July 15, 2014 at 2:27 pm
It's been awhile since I've used a lookup transform, but is sounds like you need to have the data types match on the join columns. So either have them...
July 15, 2014 at 11:59 am
There are several options:
1. Server-side trace to see what is really happening in SQL Server
2. Add error handling in the trigger/proc to log any errors.
3. Disable the trigger, run the...
July 15, 2014 at 11:14 am
I've never run the Upgrade Wizard, but my guess would be that this is just a message carried over from SSDT if you open a package/project in SSDT. I...
July 15, 2014 at 10:58 am
It's not in system_health. You can possibly get it from the Default Trace looking for the Object:Altered event and ObjectType of 16964 which is Database. It doesn't give...
July 15, 2014 at 10:52 am
You need to convert the year column being brought in from access from text to string. Text is a binary type, not a string type.
July 15, 2014 at 10:39 am
Chord77 (7/15/2014)
I am interested in this, are there any good resources for learning more about T4 templates? (A quick search shows lots of questions asking about T4 templates)
Thanks
There isn't...
July 15, 2014 at 8:09 am
Hardy21 (7/14/2014)
Sorry I got the answer. Issue resolved.
And the answer is?
July 14, 2014 at 10:24 am
mortonsoft (7/14/2014)
GilaMonster (7/9/2014)
Jack Corbett (7/9/2014)
July 14, 2014 at 10:10 am
Duplicate post, please post answere here, http://www.sqlservercentral.com/Forums/Topic1591742-1632-1.aspx
July 11, 2014 at 12:51 pm
You need to make sure you set security at the level you want the user to see. If a user has Browse permissions at the report server level they...
July 11, 2014 at 12:49 pm
Short answer, yes.
Long answer, you can keep the existing work in package deployment and new work in Project deployment. We are doing the same thing where I'm at now....
July 11, 2014 at 12:44 pm
How are you loading the data?
Is all the data going to one table or to multiple tables?
Are the tables heaps or do the have clustered indexes?
July 11, 2014 at 9:01 am
Don't put the user in any fixed database roles and then run something like:
GRANT SELECT ON schema::dbo TO ;
which grants select only on all objects in the dbo schema. ...
July 11, 2014 at 8:36 am
Viewing 15 posts - 886 through 900 (of 9,641 total)