Hi, we are using the create vs resolved gadget to display monthly incidents created vs resolved. When presenting to our upper management, we would prefer not to display this month as sometime the data is not relevant. Is it possible to remove current month from the gadget graph? See attached picture.
We already tried filtering out all issues created / closed in currentMonth() but doesn't work.
Anyway, thanks much for your help, all is well now.
..AJ
That's just giving you the tail end of the errors really. You'll need to read the full set of logs to scan through the detail and see what the root cause it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks for the quick reply Nic, I was thinking that this was "information enough". when I look though the logs, it appears that i don't have permission to create tables - i followed - I thought - the instructions to the letter. the only difference between this install and my previous one was that this install is using sql2012 vs sql2008. so maybe I need more detail on exactly what permissions i need to grant to who/whom so that JIRA can instantiate those tables.
thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, create tables will be a problem with the database user. The easy thing to do is grant the database user full access to the database Jira is going to be using (not database system level, just the right to create tables, insert, delete, select, create indices and the rest). But it's all about the database access at this point.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks again Nic. I thought I had all of this squared away. It turned out that the jirauser was created without any permissions whatsoever (not even access permissions for the database?? I didn't remember this at all when i did this years ago. It seemed like the db_owner naturally had all the permissions for the database it created). Perhaps the install instructions should include this little nuance?? now for the 64$ question, i went into the security section for the database in management studio and gave the jirauser ALL permissions - and everything looks like its working. But does the jirauser really need any and all permissions turned on? do you know the minimum set of permissions that the jirauser needs? where are the permissions documented. thanks again Nic!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Most of the instructions I've seen include a "grant X to jirauser" in some form or another. But I don't use MS-SQL enough to remember them. If you can translate these from MySQL/PostGreSQL, then it should be fine for running JIRA with MS-SQL as well (I *think* they're mostly the same, but I wouldn't rely on my shonky memories around MS-SQL): * Select * Insert * Update * Delete * Create * Drop * Alter * Index That should give you a locked down minimal set of database permissions. You can actually go further after installation if you're not going to use certain plugins, and lock it down to just insert/update/select/delete, but I wouldn't do it, just in case you do decide to use plugins.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.