 |
|
|
 |
|
 |
wonderful idea and good tool. But it not working with me. after establishing a connection it fails to get list of tables.
________________
IMQ
We can have facts without thinking but we cannot have thinking without facts.
****************
|
|
|
|
 |
|
 |
it's only designed to work with SQL 2000, if you are using SQL 2000 and using SA password. then provide error message.
Best Regards,
VS
|
|
|
|
 |
|
 |
Thanks for reply. yep i have tested its working only with 2000. I tried with SQL Server 2005.
well good job.
________________
Tehmina Qureshi
We can have facts without thinking but we cannot have thinking without facts.
****************
|
|
|
|
 |
|
 |
After pressing the first "next", it moves to the screen with "available tables" and "selected tables" but the "available" is empty. After a long wait it gives an unhandled exception.
I do it with a sql server 2005 working on a database with sql 2000 compatibility mode
nice try
|
|
|
|
 |
|
 |
Thanks Very Much for the Great tool.
It helped us a lot..And will help in future..
Keep the Good Work.
Russell Aboobacker
First Ameican Corporation
|
|
|
|
 |
|
 |
"I am unable to generate insert statements it dispalys blank instead of table list."
- harinov60
|
|
|
|
 |
|
 |
Kindly make sure you have necessary access to database tables and they are user defined tables.
Best Regards,
VS
|
|
|
|
 |
|
 |
Take a look on http://www.sqlscripter.com to generate insert, update, delete scripts
|
|
|
|
 |
|
 |
Hi Vivek,
Your tool are very usefull. I used it against SQL Server 2000 DB and it works well . Thanks for it.
Today I try to use it against a DB on SQL Server 2005 but it doesn't work in correct manner .
On the second step nothing tables are showed from the selected DB, so you cannot go on the next step.
Could you publish the source code?
Thanks in advance
Antonio
|
|
|
|
 |
|
 |
I lost the source code, due to machine crash.
I will upload it, once I will re-create it and this solution is only compatible with SQL Srvr 2000.
Thanks,
Best Regards,
VS
|
|
|
|
 |
|
 |
When my table has a field of type uniqueidentifier (i.e GUID), the opening and closing quotes are missing in the values for those types in the insert statement (i.e. INSERT INTO [Reports] ([ReportID],[ReportName]) VALUES ('3ab5b6e2-39ec-4921-8c94-e63c8a4d2b07', 'ABC Report'))
Afterall this is a good tool which enables to select a few tables to generate the SQL Insert statements. It would be good if there's an option to truncate the table at the beginning of the output script. I'd be grateful if you could email me the fixes or have the source code available.
|
|
|
|
 |
|
 |
Hi,
Now, tool is capable of handling uniqueidentifier type fields and it will also produce truncate table command at the beginning.
Thanks for your valuable feedback.
Best Regards,
VS
|
|
|
|
 |
|
 |
Decimal insert causes probleme with "," which create an another column. Domage because this tools might be usefull...
|
|
|
|
 |
|
 |
Can you please give detailed explanation about the problem you are facing?
Best Regards,
VS
|
|
|
|
 |
|
 |
Decimal fields like 20.32 is generated in inserted commands with "," (20,32). So SQL interpreted this decimal as 2 fields : 20 and 32. I hope be clear
|
|
|
|
 |
|
 |
Unfortunately, I am not able to reproduce this problem. Can you please send me the create table script and with some sample data so that I can retry it.
Here are the details of test performed by me, and I got proper insert Statement:
----------------------------------------
CREATE TABLE [dbo].[test] (
[testid] [numeric](18, 0) IDENTITY (1, 1) NOT NULL ,
[testname] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
[testno] [numeric](18, 2) NOT NULL
) ON [PRIMARY]
GO
------------------------------------
--Start, Truncate Table
Truncate Table test
--End, Truncate Table
SET NOCOUNT ON
GO
SET IDENTITY_INSERT [dbo].[test] ON
GO
INSERT INTO [test] ([testid],[testname],[testno]) VALUES (1, 'sdfasdf', 23.22)
INSERT INTO [test] ([testid],[testname],[testno]) VALUES (2, 'asdfasdf', 2323.23)
SET IDENTITY_INSERT [dbo].[test] OFF
GO
SET NOCOUNT OFF
GO
Best Regards,
VS
|
|
|
|
 |
|
 |
Please make it possible to save directly to disk (in x MB chunks) so it's possible to save big databases (bigger than 50 MB or so).
Also, have you checked out this one: http://www.codeproject.com/dotnet/ScriptDatabase.asp[^]
--------------------
No one is perfect.
Welll, there was this guy... but we killed him.
|
|
|
|
 |
|
 |
Hi,
I will try to add your suggestion, but as of now I am very busy with current assignments. Incase you want to add this functionality let me know, I will forward my source code to you for the application betterment.
Link given by you is also very good and gives additional functionality of automatically sorting the tables as per their dependencies and blobs.
Best Regards,
VS
|
|
|
|
 |
|
 |
I could not see the source code?
thanks a lot
|
|
|
|
 |
|
 |
I will upload the source code, once I will complete the implementation for ORACLE & DB2.
Best Regards,
VS
|
|
|
|
 |
|
 |
Can u upload source code for SQL Server only
Pankaj Bothara
|
|
|
|
 |
|
 |
I dont have source code with me, if you need source code. Please feel free to use any decompiler.
PS: Please send me source code once you generate it.
Best Regards,
VS
|
|
|
|
 |