0
votes
2answers
22 views
i can’t find enterprise manager
i just installed the full sql server 2008 express on my machine and i can't find any link to run enterprise manager:
i went to here and installed the full package:
http://www.mic …
4
votes
5answers
117 views
How to run a stored procedure every day in SQL Server Express Edition?
How is it possible to run a stored procedure at a particular time every day in SQL Server Express Edition?
Notes:
This is needed to truncate an audit table
An alternative would …
0
votes
1answer
30 views
Can only connect to SQL Sever 2008 Express remotely afer server restart
I am running SQL Server 2008 Express and can connect to it fine using port forwarding through my router, AND when I am on the same subnet.
However when I am on a different subnet …
0
votes
2answers
15 views
MySQL Migration Toolkit & SQL Express
I'm trying to port a database from SQL Server Express over to my MySQL database. I've made sure the SQL Express is running on port 1433 and all, and the MySQL Migration toolkit is …
1
vote
3answers
60 views
How to warm up a sleeping SQL Server database
We have a job which runs every morning in CruiseControl.net to import a datafile into a DB. Our problem seems to be that some nights the DB goes to sleep over night. When we run th …
0
votes
0answers
22 views
SQL Server: PHP Queries via SQLCMD fail sometimes!
Hello all,
I have a PHP script that queries SQL server using SQLCMD - I am using SQL Server Express 2008.
Most of my queries go through to SQL Server fine but sometimes I get thi …
1
vote
7answers
63 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 err …
0
votes
2answers
39 views
What are the options available to encrypt a SQL Server Express database?
We have a team of sales persons who travel often carrying a laptop loaded with Sales data in a SQL Server Express database. What are the options available to encrypt a SQL Server E …
0
votes
2answers
152 views
SQL Server 2005 Express installed after SQL Server 2008 Express
Hello,
I already had the SQL Server 2008 Express engine installed (just the bit that comes with VS 2008 Express). I then installed SQL Server 2005 Express followed by SQL Server …
0
votes
4answers
36 views
Tool to copy SQL Server 2008 db to SQL Server 2008 Express?
I have a typical dev scenario: I have a SQL 2008 database that I want to copy every so often to my local instance of 2008 Express so that I can do dev, make changes, etc. to the lo …
0
votes
2answers
156 views
SQL Server Express CREATE DATABASE permission denied in database ‘master’.
After I change the option as UserInstance="False", then the error starts to happen.
Because I want to use full-text search, the option change is required. BUT, it stopped to work. …
1
vote
1answer
20 views
Shipping SQL Server Express Edition with my Windows Service.
Hi,
I have created a windows service which interacts with SQL Server Express Edition. I want to ship this to my test machine which doesn't have any form of SQL Server installed.
…
0
votes
3answers
23 views
Log in SQL Server Express for audit
It is possible in SQL Server Express have a log of all operations "SELECT / UPDATE / INSERT / DELETE" being made.
Thank you.
0
votes
6answers
75 views
Launch multiple stored procedures to run ‘in the background’ on SQL Server Express Edition
Is it possible to run multiple stored procedures that run 'in the background'?
The stored procedures must be launched from a single, master stored procedure, in the same way that …
1
vote
2answers
45 views
How to run a stored procedure when SQL Server Express Edition starts?
How is it possible to run a stored procedure when SQL Server Express Edition starts?
