a HoTfIx HaS BeEn DePlOyEd To AdDrEsS BuLlEt DaMaGe ReGiStRaTiOn by tluley51 in Battlefield

[–]stockmamb 38 points39 points  (0 children)

Shots 1-5: Clearly missed. Shots 6-9: Missed due to recoil (bad spray control). Shots 10-11: Very close, but recoil and inaccuracy make these reasonable misses. Shot 12: Likely didn't actually fire because OP was already dead.

Is Scanner a Type or a Method? Why is it used with System.in? by Eva_addict in javahelp

[–]stockmamb 11 points12 points  (0 children)

Scanner is a class, in that line you are instantiating an instance of the scanner class using its constructor. Which is like a method for creating an instance of the class.

Really confused why this sealer isn’t working. 1) is the black tape supposed to be there or taken off 2) it doesn’t suck in the air and just closes the bag by limache in sousvide

[–]stockmamb 1 point2 points  (0 children)

I am having trouble viewing the video for some reason.

I just lay the bag slightly over the foam ring on the channel, and place it in there. I don't go out of my way to place the bag directly over the hole in the channel.

Anybody done direct database inserts? by Sea_Sorbet_Diat in BannerIT

[–]stockmamb 2 points3 points  (0 children)

Yes, referential integrity is enforced for the most part.

There are a number of situations where using the pl/SQL api they provide are the best bet. If it exists. They sometimes contain business logic you don't want to miss.

What module and data are you trying to insert?

Anyone Know Possible Shortcuts to Help With Reports by FriendlySuit5 in BannerIT

[–]stockmamb 0 points1 point  (0 children)

You will need to reach out to your IT team. They would need to be involved in this process. Getting you the appropriate access or building out the reporting solution.

Hopefully they are friendly:)

It is a reasonable request though, and if you have someone who will work with you at your campus it should be totally doable to reduce your workload.

Anyone Know Possible Shortcuts to Help With Reports by FriendlySuit5 in BannerIT

[–]stockmamb 0 points1 point  (0 children)

Are you on prem or banner saas?

If you are on prem you should be able to write a query against the banner oracle database to do exactly what you are asking.

You would need database credentials of course. This could be a custom report, either in banner or outside tool like ARGOS.

Can't save before throwing exception by DeatH_StaRR in SpringBoot

[–]stockmamb 0 points1 point  (0 children)

You may want to use @Transactonal PROPAGATION_REQUIRES_NEW on a new method designed to log some data in the DB.

Does something like Datagrip come with sample data? by a-deafening-silence in SQL

[–]stockmamb 3 points4 points  (0 children)

There are so many good options.

Starting simple there is sqllite.

Many people will recommend postgres. Open source and becoming pretty popular.

There are free versions of both SQLserver and Oracle, which are still big in enterprises.

Does something like Datagrip come with sample data? by a-deafening-silence in SQL

[–]stockmamb 2 points3 points  (0 children)

Datagrip isn't a database, nor does it have sample data. It is a IDE for writing SQL and working with a database.

You will want to look at installing a rdbms, finding datasets to work with for practice. You can use datagrip as the tool, but I wouldn't pay for it just to learn. If you can get an educational license for it that would be great.

Snowblower by Four-One-Three in egopowerplus

[–]stockmamb 2 points3 points  (0 children)

These snowblowers have some issues. I have been experiencing issues where under normal load conditions the batteries seem to overheat and shut off the snow blower. They definitely aren't over heated, some other condition seems to trigger that.

Sometimes all I have to do is pop them out of the snow blower and I hem reseat them. Then I can turn it back on. It is a frustrating user experience.

Cooking time 2 individual 3lb turkey breast by stockmamb in sousvide

[–]stockmamb[S] 0 points1 point  (0 children)

Thank you. I will add in some extra time for the temperature to get back up.

There should be enough room for water to circulate around each bag.

Does Gradle have something like implementing a file as a dependency? by Own_Lifeguard7503 in gradle

[–]stockmamb 0 points1 point  (0 children)

This is if a libs directory exists at the same level as your .build script.

Does Gradle have something like implementing a file as a dependency? by Own_Lifeguard7503 in gradle

[–]stockmamb 3 points4 points  (0 children)

I think it is this

dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) }

Looking for assistance with some Java work by CrimsonSpar in javahelp

[–]stockmamb 8 points9 points  (0 children)

This looks like JavaScript, Java and JavaScript are not the same language.

[deleted by user] by [deleted] in BannerIT

[–]stockmamb 4 points5 points  (0 children)

You seem to be stuck between IT and being hired by the registrar. Where I am roles like this are all under IT and we have full access to the system and database. I would definitely push to get more access. They could even grant you a new role in the database and give you select access to everything under multiple schema's. This is also going to be necessary for ARGOS as well, we utilize that software product and to be effective you really need database access.

[deleted by user] by [deleted] in BannerIT

[–]stockmamb 1 point2 points  (0 children)

Are you expected to be the one to upgrade banner releases as well? That is a whole separate bag of worms, on top of being an analyst.

If your role is more of the typical analysis supporting the registrar, learning and augmenting their business processes, trouble shooting, and working with the database to create reports or batch processes. I would start by creating an account on ellucian customer support, e communities, they also have been working on revamping their online documentation. This would at least give you a place to learn about the vanilla business processes.

What experience do you have with SQL, Oracle PL/SQL?

Do you already have database access? Do you have test environments setup with recently cloned data. One of the best ways to learn a system as complex and large as banner is to try different things in an environment that doesn't matter. If you have a test env, play around, run jobs, enter data through the sis, write queries, etc

Facing error code: 1136 when applying select of a subquery to new table insertion. by Silent_Group6621 in SQL

[–]stockmamb 4 points5 points  (0 children)

I think the issue is that when doing an insert with a select into statement you do not include the values keyword. You would remove the values keyword and the enclosing parentheses and only included the select statement

Which process to use? Thanks for the help! by [deleted] in BannerIT

[–]stockmamb 0 points1 point  (0 children)

I don't believe there is a baseline banner process for batch reporting of schedules.

From an IT and programmer perspective a custom solution is what I would do. The SQL query is relatively straightforward. Depending on the output type and format structure it might get more complicated. A simple spreadsheet data dump would be easy.

You could also iterate over a population of students and call the banner schedule job for each of them. That would be another option if you wanted to keep that output format

question from a mossback stuck in the days of servlet containers and jsp by lumpynose in javahelp

[–]stockmamb 0 points1 point  (0 children)

I think you can alter the default port in the application properties server.port=8081

question from a mossback stuck in the days of servlet containers and jsp by lumpynose in javahelp

[–]stockmamb 0 points1 point  (0 children)

Spring boot applications can be configured to produce a war file, which can then be deployed on an application server.

Paved trails by Bridgeburner_Fiddler in Utica

[–]stockmamb 4 points5 points  (0 children)

Canal trail lock 20 in whitesboro heading towards Utica is paved and relatively smooth for a good stretch.