1
vote
2answers
255 views
Bypass .Net v3.5 verification when installing SQL Server 2008 Express
For some reason, when I try to install SQL Server 2008 Express, I get an error saying that I need to have .Net Framework 3.5 installed first, but the thing is: I already have! So could anybody tell …
3
votes
6answers
621 views
What is the best way to store a large amount of text in a SQL server table?
What is the best way to store a large amount of text in a table in SQL server?
Is varchar(max) reliable?
…
3
votes
4answers
444 views
Best way to store tags in a sql server table?
What's the best way to store tags for a record? Just use a varchar field? What about when selecting rows that contains tag x? Use the like operator?
thanks!
…
3
votes
2answers
583 views
Best way to search in a varchar column in sql server
Hi,
What would you recommend to search a sql server table (varchar(max) column) for a term?
Let's say, like in ebay, if you search for "wii brand new", you get results like "Brand New Ninte …
5
votes
9answers
632 views
Select products where the category belongs to any category in the hierarchy
I have a products table that contains a FK for a category, the Categories table is created in a way that each category can have a parent category, example:
Computers
Processors
…
0
votes
3answers
2k views
Set a SP return value to a variable in SQL Server
Hi,
I have a sproc that returns a single line and column with a text, I need to set this text to a variable, something like:
declare @bla varchar(100)
select @bla = sp_Name 9999, 99 …
