SV650.org - SV650 & Gladius 650 Forum



Idle Banter For non SV and non bike related chat (and the odd bit of humour - but if any post isn't suitable it'll get deleted real quick).
There's also a "U" rating so please respect this. Newbies can also say "hello" here too.

Reply
 
Thread Tools
Old 16-10-14, 08:52 PM   #1
Brettus
Guest
 
Posts: n/a
Default OMO: SQL query tools

Hopefully a quick one, I've implemented an ERP system at work that uses SQL as the back end and I've got a bit of experience in writing some reports. The company that sold us the ERP installed Visual Studio Data Tools and that loads up so I can write and deploy SSRS reports which are cool but the actual query writing at present is done in MS graphical query, it isn't very feature rich (missing UNDO much to my recurring chagrin!) I resort to copying the query out to notepad just in case I break it. Very messy.


There MUST be a better software solution out there. I know that tools aren't always ideal as they aren't as flexible or powerful as just coding it but I'm not quite at "matrix" level just yet. Most of what I'm wanting is simple enough stuff, just it gets a bit messy and on one of them the parser gave up trying to sort it out for me which didn't help. I like the table map view and things but is there a better tool out there I could be using for getting the query done?


Thanks org!
  Reply With Quote
Old 16-10-14, 09:42 PM   #2
PyroUK
Member
Mega Poster
 
PyroUK's Avatar
 
Join Date: Feb 2011
Location: Poole
Posts: 1,083
Default OMO: SQL query tools

That's a bit too technical for my knowledge, but I used to use MS SQL Server Management Studio at my old place.

Did what I needed it to do, although you might not be able to get it free perhaps they do a trial version so you can see if it's fit for purpose?
__________________
2011 Triumph Daytona 675, Arrow exhaust and QS!
PyroUK is offline   Reply With Quote
Old 16-10-14, 10:23 PM   #3
LiquidFlux
Guest
 
Posts: n/a
Default Re: OMO: SQL query tools

I'd suggest going through the list of SQL related tools on alternativeto.net.
  Reply With Quote
Old 17-10-14, 06:31 AM   #4
phi-dan
Member
 
phi-dan's Avatar
 
Join Date: Apr 2009
Location: going up Camborne hill coming down
Posts: 251
Default Re: OMO: SQL query tools

For creating formatted reports at work we use Crystal Reports. No need to know the full syntax, you just drag and drop fields onto the report, but you can also build complex queries, link tables, ref external data, etc.
One of the developers has a thing for Logicity (but she also hosts dashboards off nested shares on her PC instead of the web cluster / SharePoint server / data farm- go figure)
__________________
Was: Red curvy S: crash bungs, double bubble screen, fenda extenda, HEL front lines, OEM belly pan
Now: Blue FZ6 Fazer
phi-dan is offline   Reply With Quote
Old 17-10-14, 11:44 PM   #5
Heorot
Member
 
Join Date: Jul 2012
Location: South Norfolk
Posts: 341
Default Re: OMO: SQL query tools

Sorry can't help. I last used QMF on an IBM mainframe with DB2 about 12 years ago.
__________________
Some say the cup is half empty, while others say it is half full. However, both are wrong; the real problem is the cup is too big.

Honda 125 CG blown engine Gone to the great mechanic in the sky
Naked SV650 K3 in Silver
Heorot is offline   Reply With Quote
Old 18-10-14, 06:21 AM   #6
keith_d
Member
Mega Poster
 
keith_d's Avatar
 
Join Date: Feb 2009
Location: Ruislip
Posts: 1,131
Default Re: OMO: SQL query tools

I've used Crystal Reports in the past to build a flexible reporting system. It's very good but...

a) you have to understand the database structure well enough to build a 'universe' which includes all the key fields and the relationship between them

b) it used to be quite expensive
keith_d is offline   Reply With Quote
Old 18-10-14, 07:14 PM   #7
Heorot
Member
 
Join Date: Jul 2012
Location: South Norfolk
Posts: 341
Default Re: OMO: SQL query tools

Talk about stating the bleedin' obvious. Without knowing which fields have keys, any query will be horrendously inefficient.

I was a systems analyst and relational database designer for 20 years.
__________________
Some say the cup is half empty, while others say it is half full. However, both are wrong; the real problem is the cup is too big.

Honda 125 CG blown engine Gone to the great mechanic in the sky
Naked SV650 K3 in Silver
Heorot is offline   Reply With Quote
Old 19-10-14, 01:23 AM   #8
Haircut
Member
 
Haircut's Avatar
 
Join Date: Mar 2004
Location: North Worcestershire
Posts: 58
Default Re: OMO: SQL query tools

You mentioned SSRS so I am going to assume then you mean Microsoft SQL server is the back end, to be honest the Microsoft Client tools are really the best bet as they are built for the job and can be downloaded freely and include a useful help function if you install it.

Writing SQL is generally clunky graphical tools just gloss over that and in doing so hide important functionality (IMO), forget the GUI jump in with both feet and learn the required syntax's for the basics (Select statement, from statement, where clause, inner & outer joins) and you will be much the wiser and better off long term.
Haircut is offline   Reply With Quote
Old 19-10-14, 08:49 AM   #9
keith_d
Member
Mega Poster
 
keith_d's Avatar
 
Join Date: Feb 2009
Location: Ruislip
Posts: 1,131
Default Re: OMO: SQL query tools

Quote:
Originally Posted by Heorot View Post
Talk about stating the bleedin' obvious. Without knowing which fields have keys, any query will be horrendously inefficient.

I was a systems analyst and relational database designer for 20 years.
And I was supposed to deduce this using telepathy??
keith_d is offline   Reply With Quote
Old 19-10-14, 10:15 AM   #10
kaivalagi
Member
Mega Poster
 
Join Date: Jun 2010
Location: Norwich
Posts: 1,955
Default Re: OMO: SQL query tools

Quote:
Originally Posted by Haircut View Post
You mentioned SSRS so I am going to assume then you mean Microsoft SQL server is the back end, to be honest the Microsoft Client tools are really the best bet as they are built for the job and can be downloaded freely and include a useful help function if you install it.

Writing SQL is generally clunky graphical tools just gloss over that and in doing so hide important functionality (IMO), forget the GUI jump in with both feet and learn the required syntax's for the basics (Select statement, from statement, where clause, inner & outer joins) and you will be much the wiser and better off long term.
+1

If dealing with MSSQL server the Microsoft tools are about the best there is, just requires understanding basic SQL syntax

From version 2008 onwards there's intellisense build in (via Ctrl-Space) to provide cues for object and operator names etc, but installing something like SQL Complete (they have a free version) will work a little better.

Why not start a little SQL query help thread

Also, there are decent sql tutorials out there to get you moving, but I'd say if you want to create performant sql you'll need to maybe do a 4 day course to get to the grips with it properly (depends on how well you can learn from a book or not). If you can understand indexing, joins etc and can utilise CTE, temp tables and table variables then you're well on your way.
__________________
Mark

Triumph and Suzuki owner

Last edited by kaivalagi; 19-10-14 at 10:29 AM.
kaivalagi is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Tools, Halfords Advanced general tools thefallenangel Hardware 35 26-04-12 02:24 PM
Re: Tools Whyte25 Bikes - Talk & Issues 22 26-05-11 12:04 PM
Help with tools :) sprocket SV Talk, Tuning & Tweaking 2 28-01-08 08:58 PM
Need tools - help skint Bikes - Talk & Issues 7 05-05-07 09:05 AM
Tools trudd SV Talk, Tuning & Tweaking 11 14-11-06 05:19 PM


All times are GMT. The time now is 01:06 AM.


Powered by vBulletin® - Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.