Packaging VisualBasic Product Along With SqlServer Database.

Sep 4, 2000

Hi forlks ,

I am stuck.

I have a product which is made in visual basic and using sqlserver 7
as backend. Now the question is how do i bundle this product along with the sqlserver 7 so that when the user inserts the Install CD, both the product and the database gets installed.

help in this matter would be greatly appreciated..

regards

vikas methta

View 2 Replies


ADVERTISEMENT

Packaging A 14GB Database

Mar 6, 2008

I have a 14GB database thats needs to be sent to a vendor.
I'm just curious of different ways of packaging the database to be sent.
FTP is too slow.
CDROM is to small unless split up.
Any suggetions guys working with data of this size?

thanks,
Jonathan

View 14 Replies View Related

How To Packaging A SQL Server Database For Installation As Part Of A Custom Application

Sep 30, 2005

Hi all,             How to package sql server database as part of our custom application (VB application) using install shield or any software.   That setup should detect the presence of sql server. If sql server is not present in the client machine, then our set up should install the sql server and deploy our database.   If sql server is present in the client machine, then our set up should install our database alone. How to do that. Please help me.   Regards, S.Sevugan.

View 1 Replies View Related

Packaging Changes To A Cube - What Are My Options?

May 24, 2007

I have some changes I want to make to an existing cube - that is, I'd like to add some Measures and Dimensions to the Team Foundation Server cube. I would like these changes to be applied in one quick process, where the system administrator can just run an MSI that makes the changes.

I looked at XMLA but there doesn't seem to be much support for making incremental changes to the cube. Is AMO the way to go? How have people dealt with this in the past?

Suggestions appreciated,

Paul

View 1 Replies View Related

How To Transfer Data From A SqlServer Database To A SqlServer Express Database

Mar 29, 2006

Is there a way to transfer data from a SqlServer db to a SqlServer Express db. I tried to use the backup file of SqlServer, but this file is not valid for SqlServer Express. Or there any alternatives?

thanks,

Henk

View 7 Replies View Related

Transact SQL :: Get All Children Of A Product With Product ID In Result Set

Aug 30, 2015

I am using the code below to get all the children of a particular product and it is working fine. How to get the particular product's id in the select statement. for example, i need to show 891 in a separate column for all the records returned by the query below.

DECLARE @Hierarchy TABLE (Product_Id INT, Parent_Product_Id INT)
INSERT INTO @Hierarchy VALUES (123, 234)
INSERT INTO @Hierarchy VALUES (234, 456)
INSERT INTO @Hierarchy VALUES (456, 678)
INSERT INTO @Hierarchy VALUES (678, 891)
INSERT INTO @Hierarchy VALUES (891, NULL)

[Code] .....

View 3 Replies View Related

Trying To 'load' A Copy Of A SQLServer 2000 Database To SQLServer 2005 Express

Apr 18, 2008



I am trying to 'load' a copy of a SQLServer 2000 database to SQLServer 2005 Express (on another host). The copy was provided by someone else - it came to me as a MDF file only, no LDF file.

I have tried to Attach the database and it fails with a failure to load the LDF. Is there any way to bypass this issue without the LDF or do I have to have that?

The provider of the database says I can create a new database and just point to the MDF as the data source but I can't seem to find a way to do that? I am using SQL Server Management Studio Express.

Thanks!!

View 1 Replies View Related

Upgrade SQLServer Mobile (.sdf) Database To SQLServer 2005

Feb 9, 2006

Hello,

I have an SQLServer Mobile database, and I would like to know if there is a way to upgrade it to SQLServer 2005 (.mdf) database. My database has no records in it, just the structure (tables etc). What I am actually asking is if I can create automatically a new SQLServer 2005 Database with the same structure as my existin SQLSErver Mobile database

Thanks in advance,

TassosTS

View 1 Replies View Related

How To Copy Table From Oracle Database To Sqlserver Database ?

Jul 20, 2005

Hello,I need to copy a table from an 8i oracle database to a sqlserver 2000 database.Is it possible to use the command "COPY FROM ... TO ..." ?So, what is the correct syntax ?Thanks for your helpCyril

View 1 Replies View Related

Copy Sqlce Database Structure To Sqlserver Database

Jan 6, 2008

Hi,
I have a complicated sql server mobile database (.sdf) and need to create a SQL SERVER database with the same tables. How can I do it without scripting the whole thing? I thought of using the views.information_schema databases, but it is still a lot of coding.

thanks

View 3 Replies View Related

How To Look All The Table In A Database In Sqlserver

Feb 27, 2001

how to look all the table in a database in sqlserver,
and what are the maintanance jobs that needed to be run either daily or weekly.

K

View 1 Replies View Related

Configuring A Database In Sqlserver?

Jun 9, 2006

I am learning dotnet thru Microsoft Official Curriculum and I got stuck up at one point. That is I couldn't configure the required databases according to the sql server I have installed and configured. I created a doctors database and while configuring using the below code I couldn't know what is 'ASPNET' in "SELECT @s = @@servername + 'ASPNET'"
Also what is 'webuser'



---Configure Doctors
USE doctors

GO

DECLARE @s varchar(50)
SELECT @s = @@servername + 'ASPNET'
EXECUTE sp_grantlogin @s

EXECUTE sp_grantdbaccess @s, 'webuser'

GO

GRANT EXECUTE ON [getUniqueCities] TO webuser
GRANT EXECUTE ON [getDrSpecialty] TO webuser


GRANT SELECT ON [specialties] TO webuser
GRANT SELECT ON [doctors] TO webuser
GRANT SELECT ON [drspecialties] TO webuser

GO


Can anyone help me how to solve my problem?
Your help would be very much appreciated

Thanks and Regards

Kavitha

View 1 Replies View Related

Distributing SQLServer Database

Mar 27, 2007

Good Day!



I want to know how to distribute a database in SQL Server from one computer to another?



Thnx!

Kapalic

View 1 Replies View Related

I Cannot Connect To SQLSERVER Database

Jul 23, 2007

In SQLserver Admin, ANDONASPNET is setup as a 'Server Admin'



****************************************************************************

Connection string is set in the web.config file.

<configuration>



<connectionStrings>

<add name="SqlServerEx"

connectionString="Data Source=LOCALHOSTSQLEXPRESS;Initial Catalog=DB2;Integrated Security=SSPI;"

providerName="System.Data.SqlClient;"></add>

</connectionStrings>



<appSettings/>



<system.web>

.......................................................................







protected void Button2_Click(object sender, EventArgs e)

{

string connStr = WebConfigurationManager.ConnectionStrings["SqlServerEx"].ConnectionString;

SqlConnection con = new SqlConnection(connStr);

TextBox3.Text = connStr;

try

{

con.Open();

TextBox2.Text = "<b> Server Verison::</b>" + con.ServerVersion;

TextBox2.Text += "<br /><B>Connection Is::</B> " + con.State.ToString();

}

catch (Exception err)

{

TextBox2.Text = "Error reading Database. ";

TextBox2.Text += err.Message;

}

finally

{

con.Close();

TextBox2.Text += "<BR><B>CONNECTION::" + con.State.ToString() + "</B>";

}

}

****************************************************************************



This is the error message I am getting:

"Error reading Database. Instance failure."

View 1 Replies View Related

Help With Sqlserver Database -- On Migrate To Another Server

Aug 11, 2006

I made a website with sqlserver membership
when i migrate the website to another server i can not connect to the database aspnetdb
how i can add a user to this data base in the visual web developer
 
Thnakis

View 1 Replies View Related

Copying SqlServer Database From Web Host

Mar 14, 2007

Hi,
I have a hard time copying my db (or instance?) from a SQL Server 2000 db which resides at my web host. I have Sql Server 2005 Express and Sql Server Management Studio Express on my computer and, well, there is no "ftp-like" option so I don't have a clue about how to proceed. I've read many posts on the net on this matter but nothing seems to apply to this, in my mind, rather common, configuration.
I have receieved Excel docs that should be appended to tables in my db. I have successfully installed DTS (see http://mobiledeveloper.wordpress.com/ for details - it's really simple but takes two hours) so I have a wizard for the actual import from Excel. My plan is now to
1. download/detach/whatever my table/db/part of the web host's db and download it to my computer. Then
2. fill the tables with the data from Excel. And finally, to
3. upload/attach/whatever my local db or table to the web host again.
I'm sooo confused, please, please help me out here!
Pettrer

View 1 Replies View Related

Changing Collation_name Of SqlServer Database

Nov 2, 2003

Hi

I want to change collation_name of my SqlServer Database by running a script. But I don't know how.
Please help me.

Thanks

View 1 Replies View Related

How To Transplant SQLserver 2000 Database!

May 11, 2004

as the title said
how can I move my sqlserver 2000 database to anthother machine!

View 2 Replies View Related

How Can I Insert An Image Into A SQLServer Database?

Aug 23, 2005

How can I insert an Image into a SQLServer database?

View 1 Replies View Related

Encryption Of Fields In Sqlserver Database

Dec 20, 2000

Hi,
i need to know how to encrypt a field in the sql server database.
I want to hide some text field in a user defined table.
thanks in advance.
regards
mihir

View 3 Replies View Related

Access Multiple Sqlserver Database Using VB

Aug 31, 2004

How can i access multiple sqlserver database using VB
eg. insert 1 record in a database from other databse.

View 1 Replies View Related

Removing Data From A Sqlserver Database.

Sep 10, 2007

I would like to remove data from a sqlserver database but keep the structure the the db. How would I do this?

View 9 Replies View Related

Converting Database To MS-SQLServer From PostGRESQL

Nov 23, 2006

Forgive me if this question is a bit too generic, if it is, feel free tojust not respond.I have a database which has been running in PostgreSQL for a number ofyears at this stage which I want to port into MS SQL server.It seems that the SQL that Postgre outputs when I do a backup is notsyntactically correct within MS-SQL server.My question is, does anyone have any documentation on how to convert adatabase from the Postgre platform to SQL server? Is it possible usingan ODBC connection to import a database structure including tabledefinitions, views etc into SQL Server?Failing this, does anyone have any suggestions on where I might start -I did attempt to go through the SQL code and modify it to suit SQLserver, but it's about 3,500 lines of code excluding the insertstatements (which themselves are also wrong) and almost every line needssomething changed when comparing SQL syntax from Postgre to MSSQL serverThanks in advance for any comments/suggestions.Engada.--Posted via a free Usenet account from http://www.teranews.com

View 1 Replies View Related

SqlServer 2005: How *best* To Copy One Database To Another

May 16, 2007

Hi;I thought I would rephrase a question I asked in another post to morequickly get to the heart of the matter. My apologies for anyone whois offended by what appears to be a repetition.My company has two identical web sites. One copy is for our customer,and one copy is for us to test our code changes on.We developed a hard to isolate bug in the copy of the web stie for ourcustomers.We believe the bug might be data related.We would like to replace our test database with our productiondatabase to try to reproduce the problem without interrupting ourservice to our customers.The test database and production database have all the same tables andstructures,but the names of the databases are slightly different.We have tried dropping tables from our test database and importingtables from our customer database in Management Studio. We got thedata but the identity fields were turned off as identities. We canmanually turn them back on in Management Studio, but we have severalhundred tables.In the end we just want to the data from our customer db to be in ourtest db with the test db name being the same, and have our identityfields preserved.What is the easiest way to do this?Thanks in advance for anyinformationSteve

View 5 Replies View Related

.exe To Insert Data In SQLServer Database

Jul 20, 2005

How can I make an .exe file that can insert data automatically in aSQLServer database, I can do it in C, but how can I connect to SQLServerand execute a query.All data that I have to insert are data that I can have from PCenvironment variables.Thanks--Posted via Mailgate.ORG Server - http://www.Mailgate.ORG

View 2 Replies View Related

SqlServer CE Database As Embedded Resource

Jan 29, 2007

Is it possible to deploy SQL Server CE "baked into" a DLL? For example, instead of setting the build option to "Content", can I set it to "Embedded Resource"?

View 1 Replies View Related

Excel Import To Sqlserver Database

Sep 13, 2006

Hi all,

this is thiru from India, hope i shall get answers here for my questions.

1. I need to import an Excel spread sheet to a remote sql server database through ASP.Net web application. I brief the process im following now please go through it.

Import Process:

a. select a fiile(.xls) and upload it to server.
b. using M/S Odbc Excel driver, and the uploaded excel file as datasource,
c. query the excel sheet to populate a dataset.
d. iterate through the rows of the dataset(I could not bulk copy the excel data, because
have to check the database, if record exists then update, else insert) to import to the
SQL Database

Performance issues:
1. I have to import spreadsheets having upto 60,000 records or even more at a time.
2. Is this a good option to use a webapplication for this task (I use this approach because
my boss wants to do so).
3. some times the excel file size grows up to 7 mb(Though i shall adjust config settings,
uploading and then querying a 7 mb file shall be an ovverhead i think.)
4. is there any possibility to get the datasource with out uploading the file to the server (Like
modifying the connection string as "datasource=HtmlFileControl.PostedFile" instead,)(I
tried this but it gives me "unspecified error").

please analyse my problem and suggest me a possible solution.
I thank all, for your efforts, of any kind.
have a nice time,
........thiru

View 7 Replies View Related

Convert SQLServer Expresss Database To Sqlserver2000

Dec 10, 2006

I have some question about SQLServer Expresss.
1. I want attach a SQLServer Expresss database to sqlserver2005.is it possible? How?
2. Can I get script by SQLServer Expresss?
3. And my important question is: How can I convert a SQLServer Expresss database to sqlserver2000?
 
Please help me.
Thanks in advance.

View 3 Replies View Related

Please Take A Look... Database Changes Not Maintained Between VS2K5pro And SQLServer Dev Version.

Apr 17, 2007

Well that's pretty much it. I discovered this when I added tables to a database from within VS2K5. The tables are visible in VS but not in the server management studio.To clarify further...I added a db to a website in VS. I then used the server management studio to delete tables from the db. They appear to be gone in server management studio, but are still visible within VS, even after a refresh and shut down/restart of VS.I don't get it. What am I missing here? This is killing me.Any thoughts? The only other thing I can think to add is that I originally created the db in question from within VS2K5. I did nothing I am aware of to make it act differently than any other db. So why it shows up in the server management studio but changes I make aren't consistently maintained between there and  VS2K5, I do not understand.TIA - Regards, Joe 

View 4 Replies View Related

How Can I Store Files Like (abc.txt , Abc.doc) In SqlServer Database From ASP.NET Application

Jan 29, 2006

How can i Store files like (abc.txt , abc.doc) in SqlServer Database from ASP.NET application ?? my files are about (2 Mb ) size
aslo  want to know about text as well as .jpg , . gif files also
pls send me code ... help me
 

View 4 Replies View Related

Restoring SQLserver Database From A Backup Device

Dec 7, 2004

Hello,

Every hour I make a backup of the log files of a database to a backup device. Each backup is appended to this backup device.

Now to restore at a point in time I normally use the following script;

RESTORE DATABASE mcs_carolus
FROM disk='E:sqlserver_databasesmcs_carolus_data.bak'
WITH REPLACE,
NORECOVERY
go
RESTORE LOG MCS_CAROLUS
FROM disk='E:sqlserver_databasesmcs_carolus_log.bak'
WITH FILE = 1, NORECOVERY
GO
RESTORE LOG MCS_CAROLUS
FROM disk='E:sqlserver_databasesmcs_carolus_log.bak'
WITH FILE = 2, NORECOVERY
GO
RESTORE LOG MCS_CAROLUS
FROM disk='E:sqlserver_databasesmcs_carolus_log.bak'
WITH FILE = 3, NORECOVERY
GO
RESTORE LOG MCS_CAROLUS
FROM disk='E:sqlserver_databasesmcs_carolus_log.bak'
WITH FILE = 4, NORECOVERY
GO
RESTORE LOG MCS_CAROLUS
FROM disk='E:sqlserver_databasesmcs_carolus_log.bak'
WITH FILE = 5, NORECOVERY
GO
RESTORE LOG MCS_CAROLUS
FROM disk='E:sqlserver_databasesmcs_carolus_log.bak'
WITH FILE = 6, NORECOVERY
GO
RESTORE LOG MCS_CAROLUS
FROM disk='E:sqlserver_databasesmcs_carolus_log.bak'
WITH FILE = 7, RECOVERY,STOPAT = 'Nov 25, 2004 11:59 AM'

Is there a simpler way of restoring without going through this long process.

Regards,

Albert

View 1 Replies View Related

Restore (migrate) Database From MS SQLserver 2005

Nov 1, 2007

can we restore (migrate) database from MS SQLserver 2005 to MS SQLserver 2000

Pls reply.

View 2 Replies View Related

Migrating SQLServer 2000 Database To 2005

Jan 25, 2008

Hi there

I heard from someone that there is a tool that can verify/check whether the database can be deported to SQL Server 2005 native (90) or not. Is this true?

Thanks

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved