0
votes
4answers
46 views
How to fill a varbinary(MAX) column with a default image for all the records in SQL Server 2005 Express
I want to fill the varbinary(MAX) column of a SQL Server database table when ever a new record is created with a default picture. How do I do this using a trigger or in that case by any other means?
…
2
votes
1answer
60 views
Using SQL Express edition commercially
Can I use SQL Server Express edition for commercial use?
Can our clients redistribute SQL Server Express edition with their application?
0
votes
2answers
32 views
SQL Dependency with SQL Server express 2005
Is it possible to use SQL Dependency with SQL Server Express 2005 which comes with VS 2008?
1
vote
2answers
33 views
SQL Server - can’t do COUNT on DATEDIFF without doing CREATE VIEW
Hi,
I am trying to get some information on the differences in two dates and how often that difference has occurred. I can use:
SELECT
DATEDIFF (day, db1.dbo.t1.Date1, db2.dbo.t2.Date2) AS Days
…
0
votes
2answers
160 views
Team Foundation Server 2005 and SQL Express 2005
I haven't seen anything that says SQL Express 2005 is not supported for use with Team Foundation Server 2005.
However, when I attempt the installation I get all sorts of errors "SQL Agent service …
1
vote
2answers
43 views
Axapta v3.0 with SQL 2005?
I managed to find an old Axapta version to practice some programming and learn Axapta a little. The problem is I can't get it started. I had installed SP1-2-3 and started it, it is supposed to create …
1
vote
7answers
105 views
Delete rows from multiple tables using a single query (SQL Express 2005) with a WHERE condition
This is the query I'm using:
DELETE TB1.*, TB2.* FROM
TB1 INNER JOIN TB2 ON TB1.PersonID = TB2.PersonID
WHERE (TB1.PersonID)='2'
It's working fine in MS Access but getting error (Incorrect syntax …
0
votes
4answers
74 views
how to connect to another sql server database(server pc) in local area network
hi to all,
i m creating an application, inwhich client has to acces a database stored in a remote location connnected through a live ip. how can i connect simply with a database server placed in …
1
vote
5answers
394 views
SQL2005 Express slow from remote VB6 application
I have a legacy VB6 application that was built using MSDE.
As many client's database grow towards the MSDE 2 GB limit they are upgraded to SQL 2005 Express.
This has proven very successful until …
0
votes
0answers
13 views
installing VWD 2005 after VWD 2008 ?
Hello,
I originally installed the Visual Studio 2008 SP1 Express editions. I also installed SQL Server 2005 Express as I had some 2005 databases. Later I needed to install both VWD 2005 Express and …
0
votes
2answers
184 views
HOW TO: Umbraco 4.0 with Microsoft SQL Server 2000
We have a server that is running Microsoft SQL Server 2000 and would like to setup Umbraco 4.0. I tried the web install, but it choked on the MS SQL 2005 Express install. So I next tried the manual …
0
votes
2answers
109 views
Linked server setup between SQL Server Express and SQL Server
Can you please explain how to setup a linked server between a SQL Server (A) and a SQL Server Express (B) scenario.
Server A is SQL Server 2000, whereas Server B is SQL Server 2005 Express.
I have …
0
votes
3answers
51 views
Automatically backup SQL Server database
I need to backup SQL Server database.
Is it possible to do this automatically without human intervention at regular intervals? If so yes then please suggest me how to do it and I'm using SQL Server …
1
vote
3answers
43 views
LINQtoSQL Not saving to database,but changes show in app.
Hey all, I have a linq app using C# express2008 and sqlserver express 2005 (mdf file connection)
I followed the regular dml generation and vanilla datacontext. However i created a repository class to …
0
votes
2answers
235 views
Why does my typed dataset not like temporary tables?
I am attempting add a tableadapter to a stored procedure in my SQL Server 2005 Express. The stored procedure, however, uses a temporary table called #temp. When creating the table adapter, Visual …
