![]() | |
#11
| |||
| |||
|
|
On Mon, 19 Jul 2010 14:56:35 +0200, "ViLco" <villiber (AT) tin (DOT) spam> wrote: Gene Wirchenko wrote: I note that the below does not include installing SQL Express. The installation was full of unexplained options, and I got it wrong the first time. I may have gotten it wrong after that; who knows? Even folowing a supposed tutorial I found on the Web did not do it. WHich version did you try to install? I recently installed SQLserver 2008 express and I hadn't much doubts about the setup options. Maybe things have improved. 2008. Who knows? Without proper docs, it is all too possible (and likely) to get stuck in the swamp. Here are my download notes. Can you tell if I have what I should? [The next four items are required to be installed in the same order for SQL Server 2008 Express with Advanced Services (the last of the four).] dotnetfx35setup.exe .NET 3.5 download program (Actual download is about 52 MB.) 2008-12-29 downloaded starting from http://www.microsoft.com/downloads/d...displaylang=en WindowsXP-KB942288-v3-x86.exe Windows Installer 4.5 2008-12-29 downloaded starting from http://www.microsoft.com/downloads/details.aspx ?FamilyId=5A58B56F-60B6-4412-95B9-54D056D6F9F4&displaylang=en WindowsXP-KB926139-v2-x86-ENU.exe Windows PowerShell 1.0 2008-12-29 downloaded starting from http://www.microsoft.com/downloads/details.aspx ?FamilyId=6CCB7E0D-8F1D-4B97-A397-47BCC8BA3806&displaylang=en SQLEXPRADV_x86_ENU.exe SQL Server 2008 Express with Advanced Services 2008-12-29 downloaded starting from http://www.microsoft.com/downloads/details.aspx ?FamilyId=B5D1B8C3-FDA5-4508-B0D0-1311D670E336&displaylang=en [end of SQL Server installation programs] |
#12
| |||
| |||
|
|
SQLEXPRADV_x86_ENU.exe SQL Server 2008 Express with Advanced Services 2008-12-29 downloaded starting from http://www.microsoft.com/downloads/details.aspx ?FamilyId=B5D1B8C3-FDA5-4508-B0D0-1311D670E336&displaylang=en [end of SQL Server installation programs] |
|
And, if I do have what is required, how exactly to install it? I would love a good tutorial. I did find a tutorial, but it did not work. |
#13
| |||
| |||
|
|
All the softwares I installed simply required clicking on "Next" button, apart from agreeing to the EULAs, so I didn't modify anything. |
#14
| |||
| |||
|
|
All the softwares I installed simply required clicking on "Next" button, apart from agreeing to the EULAs, so I didn't modify anything. Well, I had to specify some accounts. I hope I got that right. Now what? |

#15
| |||
| |||
|
|
Gene Wirchenko wrote: All the softwares I installed simply required clicking on "Next" button, apart from agreeing to the EULAs, so I didn't modify anything. Well, I had to specify some accounts. I hope I got that right. Now what? Use it ![]() I don't know what you did install it for, you know why. For testing? Exporting data to/from VFP and SQL? Upsizing your VFP data to SQLserver? I mainly use it to extract data coming from customers who move from third party products to our products, and we have to convert theyr data into our structure. This way I have seen many versions of SQLserver, Oracle, SQLbase, SQLAnywhere, Cobol files, C-iSAM, Access, Excel, csv... It's nice to get in touch with different RDBMS's. |
#16
| |||
| |||
|
|
I would like to set up a simple database using SQL Server features and get comfortable with it. Then, I want to see about having VFP talking to such a database. Anything else is extraneous for now. Well, maybe you will tell me that I should also look at <something I wot* not of>. *wot: a word to use when "know" is too long. |
#17
| |||
| |||
|
|
Gene Wirchenko wrote: I would like to set up a simple database using SQL Server features and get comfortable with it. Then, I want to see about having VFP talking to such a database. Anything else is extraneous for now. Well, maybe you will tell me that I should also look at <something I wot* not of>. *wot: a word to use when "know" is too long. Launch SQLserver Management Studio Express (MSE) and see the tree structure on the left, see databases. Create a new one and then connect to it. I usually connect via ODBC, due to what I usually do with RDBMS, you can do as you please. |
|
Then once you're connected you can start working with SQLEXEC() If yoy choose the ODBC way, the SQLServer ODBC wizard will ask you some info as the server, I used MyPCname\SQLEXPRESS, then you'll be asked for the database name, use what you've inserted when creating it in MSE. After this, you should be ready to go. |
#18
| |||
| |||
|
|
Launch SQLserver Management Studio Express (MSE) and see the tree structure on the left, see databases. Create a new one and then connect to it. I usually connect via ODBC, due to what I usually do with RDBMS, you can do as you please. I have no SQLserver Management Studio Express (MSE) in my SQL Express installation. I have SQL Server Management Studio. |
|
How do I connect to the new database? Are you referring to use within SSMS? If yes, then I have figured out how to do that. At least, I can switch between databases creating tables in each. |
|
If not, I have no idea what is involved in connecting. I have been using VFP's internal tables only. Then once you're connected you can start working with SQLEXEC() If yoy choose the ODBC way, the SQLServer ODBC wizard will ask you some info as the server, I used MyPCname\SQLEXPRESS, then you'll be asked for the database name, use what you've inserted when creating it in MSE. After this, you should be ready to go. As you can see, I am not at the ready-to-go point yet and could use some help getting there. |
#19
| |||
| |||
|
|
On Tue, 27 Jul 2010 15:57:38 +0200, "ViLco"<villiber (AT) tin (DOT) spam> wrote: Gene Wirchenko wrote: I would like to set up a simple database using SQL Server features and get comfortable with it. Then, I want to see about having VFP talking to such a database. Anything else is extraneous for now. Well, maybe you will tell me that I should also look at<something I wot* not of>. *wot: a word to use when "know" is too long. Launch SQLserver Management Studio Express (MSE) and see the tree structure on the left, see databases. Create a new one and then connect to it. I usually connect via ODBC, due to what I usually do with RDBMS, you can do as you please. I have no SQLserver Management Studio Express (MSE) in my SQL Express installation. I have SQL Server Management Studio. How do I connect to the new database? Are you referring to use within SSMS? If yes, then I have figured out how to do that. At least, I can switch between databases creating tables in each. If not, I have no idea what is involved in connecting. I have been using VFP's internal tables only. Then once you're connected you can start working with SQLEXEC() If yoy choose the ODBC way, the SQLServer ODBC wizard will ask you some info as the server, I used MyPCname\SQLEXPRESS, then you'll be asked for the database name, use what you've inserted when creating it in MSE. After this, you should be ready to go. As you can see, I am not at the ready-to-go point yet and could use some help getting there. Sincerely, Gene Wirchenko |
![]() |
| Thread Tools | |
| Display Modes | |
| |