Friday, March 30, 2012
Install Report Designer (RS 2000) on VS2005 Express?
They don't want to commit to SQL Server 2005 or I'd suggest they install the CTP on a development machine and play with Reporting Services 2005.
Thanks,
Ericany solutions to this problem?sql
Wednesday, March 28, 2012
Install of SQL express edition with vs2005 pro
However, I would like to know more about how it setup my SQL 2005 Express edition when I installed the full package of vs2005. What I would like to specifically know -- if the instance is using my Windows Authentication, or what the "sa" password might be.
When installing vs2005, it automatically installed SQL Express 2005, without prompting me for setup options on the sql part. Soooo, does is use windows authentication automatically, or some type of default "sa" password.
Very curious to know...
I'm pretty sure that by default it gets installed using Windows Authentication mode, so SA is disabled.
Paul
sqlInstall of SQL express edition with vs2005 pro
However, I would like to know more about how it setup my SQL 2005 Express edition when I installed the full package of vs2005. What I would like to specifically know -- if the instance is using my Windows Authentication, or what the "sa" password might be.
When installing vs2005, it automatically installed SQL Express 2005, without prompting me for setup options on the sql part. Soooo, does is use windows authentication automatically, or some type of default "sa" password.
Very curious to know...
I'm pretty sure that by default it gets installed using Windows Authentication mode, so SA is disabled.
Paul
Wednesday, March 21, 2012
Install Developer Edition & Express?
Hi: I have installed SQL 2005 Developer Edition and VS 2005. Do I need to also install SQL 2005 Express edition too?
My version of VS2005 is proffesional. I cannot seem to find SQL 2005 Developer Edition in the Server Explorer of VS2005. So I am wondering if I need to install SQL 2005 Express. Before I had SQL 2000 and MSDE installed with VS2003 and there was no problem.
Thanks
no need to install express.|||So I do not need to install express edition. Okay. So why can I not see it using Visual Studio 2005 Server Explorer?
Thanks for your speedy reply.
|||do you dee 'data connections' ?
right click and select 'add connection' follow the wizard
|||Yes that works. But why can I not see it under the Servers node? In VS2003 I have no problem and it appears under the Servers node.
It may be a problem with my install of VS2005 because the Help is not working properly also.
Thanks
Thanks Blair. I will ask MS support when I am talking to them about my help files. I will post the anwser when I find it.
Thanks again for your responses.
Friday, March 9, 2012
Insertion of Data
It looks like you have one column for check boxes, and then one column each for all of the text fields? This depends on that you want to put in the checkbox column, but if you are inserting text to a field for each of the textbox columns and those correspond to a certian checkbox, you will be able to search your table for which textboxes have text for an entry and decide from that which boxes where checked, so you might even be able to just use the checkbox column as your identity (primary key). i.e., data structure like so:
Columns: checkbox / text1 / text2 / text3 / text4
Data: "some number" / "" / "some text" / "" / "some text"
If you were to query that data row above, you would be able to see that the check boxes in question are the ones without null text field rows. However, if you allow null text values you'd have to re-think this method a bit.
Anyway, the checkbox field can be whatever you want, and that will just depend on whatever logic you come up with. You could do it the long way and make a reference table that holds a unique value for each combination of textboxes, but this will get long and messy. Using 1 column to signify a checkbox group might not be the best way to do things, but that's not up to me since it's your data. Anyway, with that setup an insert query something like this might work for you:
"INSERT INTO check (checkBoxField,TextField1,TextField2,TextField3...)VALUES (" & "checkboxNumber" & "," & text1.text & ", " & text2.text & ", " & text3.text & ")"..where *check* is the table name, and checkboxNumber is whatever you decide to put in the checkbox field.