473,499 Members | 1,669 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Are there any PhpMyAdmin clone for ASP.net and SQL Server?

Hi,

I'm not sure if this is the right place.

I understand there is a tool called MSDE web admin which is supposely a web based version of our fav MS SQL GUI tools. But that requires installation.

The reason im asking this is because currently we are doing a project in which client's IT side do not allow remote connection into their MS SQL server due to security concerns.

Problem is whenever we develop scripts/apps for them, we have to send the raw scripts and stored proc via email.

Whenever there are any bug fixes or column changes, we have to resend the changes to them and they have to alter the objects again.

So, I'm thinking whether are there any phpmyadmin clones which I can simply upload to the web server and do the data modifications/ column modifications / sp modifications ourselves.

Please advise. Thanks

Apr 20 '07 #1
9 3571
On Apr 20, 5:48 am, "Eric Layman" <namyalcire[at no spam]gmail.com>
wrote:
Hi,

I'm not sure if this is the right place.

I understand there is a tool called MSDE web admin which is supposely a web based version of our fav MS SQL GUI tools. But that requires installation.

The reason im asking this is because currently we are doing a project in which client's IT side do not allow remote connection into their MS SQL server due to security concerns.

Problem is whenever we develop scripts/apps for them, we have to send the raw scripts and stored proc via email.

Whenever there are any bug fixes or column changes, we have to resend the changes to them and they have to alter the objects again.

So, I'm thinking whether are there any phpmyadmin clones which I can simply upload to the web server and do the data modifications/ column modifications / sp modifications ourselves.

Please advise. Thanks
ASP.NET Enterprise Manager
http://sourceforge.net/projects/asp-ent-man/

Apr 20 '07 #2
Alexey wrote on 19 Apr 2007 23:33:59 -0700:
On Apr 20, 5:48 am, "Eric Layman" <namyalcire[at no spam]gmail.com>
wrote:
>Hi,

I'm not sure if this is the right place.

I understand there is a tool called MSDE web admin which is supposely a
web based version of our fav MS SQL GUI tools. But that requires
installation.

The reason im asking this is because currently we are doing a project in
which client's IT side do not allow remote connection into their MS SQL
server due to security concerns.

Problem is whenever we develop scripts/apps for them, we have to send the
raw scripts and stored proc via email.

Whenever there are any bug fixes or column changes, we have to resend the
changes to them and they have to alter the objects again.

So, I'm thinking whether are there any phpmyadmin clones which I can
simply upload to the web server and do the data modifications/ column
modifications / sp modifications ourselves.

Please advise. Thanks

ASP.NET Enterprise Manager
http://sourceforge.net/projects/asp-ent-man/
Not only does this appear to be no longer being developed (last updates are
2002), but I've had the unfortunate experience of actually having to use it
on a recent project. It's bug ridden, and a nightmare to have to use.

Most frustrating is the inability to be able to export a script (such as for
creating or altering tables, or indexes) from SQL EM or SMSS and run it in
ASP.NET EM - every time I've done this it does nothing.

Making changes to tables is painful - it took me a while to work out that
all the errors I got due to existing _temp tables was because it has a
problem when there is a PK on the table, I had to untick the PK and save,
then make the changes and save, then tick the PK again and save.

I'm in the process of trying to get the host using ASP.NET EM to install
Visual WebGUI Enterprise Manager
(http://sourceforge.net/projects/vwg-ent-man) which looks to pretty much
replicate SQL EM, and is the only other SQL web admin I've come across since
trying to find a replacement for ASP.NET EM.

Dan
Apr 20 '07 #3
On Apr 20, 10:33 am, "Daniel Crichton" <msn...@worldofspack.com>
wrote:
Alexey wrote on 19 Apr 2007 23:33:59 -0700:


On Apr 20, 5:48 am, "Eric Layman" <namyalcire[at no spam]gmail.com>
wrote:
Hi,
I'm not sure if this is the right place.
I understand there is a tool called MSDE web admin which is supposely a
web based version of our fav MS SQL GUI tools. But that requires
installation.
The reason im asking this is because currently we are doing a project in
which client's IT side do not allow remote connection into their MS SQL
server due to security concerns.
Problem is whenever we develop scripts/apps for them, we have to send the
raw scripts and stored proc via email.
Whenever there are any bug fixes or column changes, we have to resend the
changes to them and they have to alter the objects again.
So, I'm thinking whether are there any phpmyadmin clones which I can
simply upload to the web server and do the data modifications/ column
modifications / sp modifications ourselves.
Please advise. Thanks
ASP.NET Enterprise Manager
http://sourceforge.net/projects/asp-ent-man/

Not only does this appear to be no longer being developed (last updates are
2002), but I've had the unfortunate experience of actually having to use it
on a recent project. It's bug ridden, and a nightmare to have to use.

Most frustrating is the inability to be able to export a script (such as for
creating or altering tables, or indexes) from SQL EM or SMSS and run it in
ASP.NET EM - every time I've done this it does nothing.

Making changes to tables is painful - it took me a while to work out that
all the errors I got due to existing _temp tables was because it has a
problem when there is a PK on the table, I had to untick the PK and save,
then make the changes and save, then tick the PK again and save.

I'm in the process of trying to get the host using ASP.NET EM to install
Visual WebGUI Enterprise Manager
(http://sourceforge.net/projects/vwg-ent-man) which looks to pretty much
replicate SQL EM, and is the only other SQL web admin I've come across since
trying to find a replacement for ASP.NET EM.

Dan- Hide quoted text -

- Show quoted text -
I was using the ASP.NET EM with a couple of hosting providers (was
installed by default) and had no big problems with it... A lack of
export could be a problem (I agree), however, from my opinion all
changes in the db-structure should be done on your local/development
server.

Visual WebGUI Enterprise Manager looks good, I need to try it.

But there is just one(?) snag

Quote: "The VEM requires ".wgx" script map to be registered in IIS."
http://sourceforge.net/docman/displa...roup_id=168612

which in most cases cannot be done on remote server

Eric: why don't you make a simple ASPX-page with just a text field and
submit button. Using that page you can execute any script (assuming
you have a dbo access) against the database.

Apr 20 '07 #4
Alexey wrote on 20 Apr 2007 02:05:42 -0700:
On Apr 20, 10:33 am, "Daniel Crichton" <msn...@worldofspack.com>
wrote:
I was using the ASP.NET EM with a couple of hosting providers (was
installed by default) and had no big problems with it... A lack of
export could be a problem (I agree), however, from my opinion all
changes in the db-structure should be done on your local/development
server.
But how do I then get that db structure change onto the remote server? I was
developing a database for a client - their hosting provider only has this
ASP.NET EM to allow access to the SQL database, so as changes are made to my
local IIS and SQL setup (all testing is done on my own systems prior to
uploading to the client's site) there was no way I could get them onto the
remote SQL Server other than via this ASP.NET EM ...
Visual WebGUI Enterprise Manager looks good, I need to try it.

But there is just one(?) snag

Quote: "The VEM requires ".wgx" script map to be registered in IIS."
http://sourceforge.net/docman/displa...roup_id=168612

which in most cases cannot be done on remote server
I'm hoping that as the client I'm working for has a few dedicated servers
with the host that they might be able to swing this.

Dan
Apr 20 '07 #5
On Apr 20, 11:20 am, "Daniel Crichton" <msn...@worldofspack.com>
wrote:
>
But how do I then get that db structure change onto the remote server? I was
Using SQL-query window

CREATE TABLE...
ALTER TABLE...
etc.

Apr 20 '07 #6
Alexey wrote on 20 Apr 2007 02:41:01 -0700:
On Apr 20, 11:20 am, "Daniel Crichton" <msn...@worldofspack.com>
wrote:
>>
But how do I then get that db structure change onto the remote server? I
was

Using SQL-query window

CREATE TABLE...
ALTER TABLE...
etc.
Which as I said, I tried and failed miserably, it just ignored the commands
I'd exported from EM/SMSS. I had no trouble with modifying data, but the
structure changes wouldn't work using T-SQL.

Dan
Apr 20 '07 #7
On Apr 20, 11:51 am, "Daniel Crichton" <msn...@worldofspack.com>
wrote:
Alexey wrote on 20 Apr 2007 02:41:01 -0700:
On Apr 20, 11:20 am, "Daniel Crichton" <msn...@worldofspack.com>
wrote:
But how do I then get that db structure change onto the remote server? I
was
Using SQL-query window
CREATE TABLE...
ALTER TABLE...
etc.

Which as I said, I tried and failed miserably, it just ignored the commands
I'd exported from EM/SMSS. I had no trouble with modifying data, but the
structure changes wouldn't work using T-SQL.

Dan
Ah, I think, I remember it. There was an annoying problem in EM, it
returned no error when a query was wrong, or an execution has failed.

open source is open source :-)

Apr 20 '07 #8
On Apr 19, 8:48 pm, "Eric Layman" <namyalcire[at no spam]gmail.com>
wrote:
The reason im asking this is because currently we are doing a project in which client's IT side do not allow remote connection into their MS SQL server due to security concerns.

So, I'm thinking whether are there any phpmyadmin clones which I can simply upload to the web server and do the data modifications/ column modifications / sp modifications ourselves.
Classic.

- Client is worried about security, so they lock down remote access to
the SQL Server.
- Consultant is annoyed with all this security
- Consultant installs tool allowing public web admin access to SQL
Server

Look, for better of for worse, your client wants his server locked
down. You should probably consider the possibility that bypassing
their intentions might be a bad idea. I'd suggest you package up your
change scripts and email them as you've been doing, and stop poking
holes in their security.

Just be sure to bill your time by the hour!

Jason Kester
Expat Software Consulting Services
http://www.expatsoftware.com/

---
Get your own Travel Blog, with itinerary maps and photos!
http://www.blogabond.com/

Apr 22 '07 #9
I'd suggest you package up your
change scripts and email them as you've been doing, and stop poking
holes in their security.
Or perhaps use:
http://www.microsoft.com/downloads/d...DisplayLang=en

--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
"Jason Kester" <ja*********@gmail.comwrote in message
news:11*********************@d57g2000hsg.googlegro ups.com...
On Apr 19, 8:48 pm, "Eric Layman" <namyalcire[at no spam]gmail.com>
wrote:
>The reason im asking this is because currently we are doing a project in which client's IT side
do not allow remote connection into their MS SQL server due to security concerns.

So, I'm thinking whether are there any phpmyadmin clones which I can simply upload to the web
server and do the data modifications/ column modifications / sp modifications ourselves.

Classic.

- Client is worried about security, so they lock down remote access to
the SQL Server.
- Consultant is annoyed with all this security
- Consultant installs tool allowing public web admin access to SQL
Server

Look, for better of for worse, your client wants his server locked
down. You should probably consider the possibility that bypassing
their intentions might be a bad idea. I'd suggest you package up your
change scripts and email them as you've been doing, and stop poking
holes in their security.

Just be sure to bill your time by the hour!

Jason Kester
Expat Software Consulting Services
http://www.expatsoftware.com/

---
Get your own Travel Blog, with itinerary maps and photos!
http://www.blogabond.com/
Apr 22 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2858
by: JimC | last post by:
I have PHP installed on a Windows XP platform using IIS as server. When updating a MySQL database field set to MEDIUMTEXT in phpMyAdmin, the transaction seems to fail if the text contains more...
7
6429
by: SCS | last post by:
Running PHP 4.5.7 PHPMyAdmin 2.5.7-pl1 IIS 6 I am thrying to get phpmyadmin to work, but whenever I click a link or try to browse a database I get a 404 error, because the PmaAbsoluteUri...
4
36989
by: Stefan Mueller | last post by:
I've just installed phpMyAdmin. If I have the line $cfg = 'http://localhost/php/phpmyadmin'; in my config.inc.php I can login to phpMyAdmin without any problems from my local machine. But it's...
2
9007
by: Daniel Mercier | last post by:
Hi, I'm new to mysql and just installed phpmyadmin. Here is the versions info: System Linux linlyne.spider.sense 2.4.22-1.2199.nptl #1 PHP Version 4.3.8
2
1687
by: Christian Hansen | last post by:
Can phpMyAdmin be used to manage databases that are not local?
4
1733
by: Dave Moore | last post by:
Hi All, I'm putting a website together using PHP and a MySQL database. I've been using phpMyAdmin as it makes updating the DB nice and easy. For development, I've been using Apache, MySQL and PHP...
5
3033
by: Marcus | last post by:
Hello, I am having a problem with a query in phpMyAdmin... it works fine on my localhost, but the exact same query produces an error in phpMyAdmin on my server: localhost: PHP 4.3.11, MySQL...
2
3954
by: pfletch750 | last post by:
I am running Vista Ultimate on a Asus P5LD2 motherboard with a 2.8 GHz Intel D CPU, 3 GB of memory and lots of disk space. No problems with other applications or services. IIS 7.0 is installed and...
2
1896
by: seanh | last post by:
Hi all, I need some advice regarding phpmyadmin, I installed phpmyadmin directory in the htdocs but when I go to my http://mysite.com/phpmyadmin I get a 500 internal error. I checked the files...
0
7134
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7014
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7180
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
6905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7395
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
4609
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3108
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1429
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
667
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.