Viewing 15 posts - 46 through 60 (of 323 total)
Which edition of SQL Server 2005 June CTP are you trying to install?
I don't think any of the server versions (Enterprise, Standard, and possibly Workgroup) will work on a Windows...
July 15, 2005 at 2:40 am
from SQL 2000 BOL - CREATE TABLE:
Temporary Tables
You can create local and global temporary tables. Local temporary tables are visible only in the current session; global temporary tables...
July 6, 2005 at 12:34 am
sysadmin is a system wide role, so it can't be applied at the database level.
While I agree with everyone else in suggesting using DTS, have you not tried just GRANT...
June 29, 2005 at 2:43 am
Only the features that are supported by Standard Edition will be functioning though.
For example, if you created an Indexed View in the database while it was on Enterprise Edt, the...
May 25, 2005 at 1:18 am
SQL Server 2005 splits managment tasks from development tasks. You need to use the Business Intelligence Development Studio to create DTS (now called Integration Services) packages.
May 24, 2005 at 12:18 am
I'm running SQLiMail with Beta 2 without any troubles.
Mind you, April CTP is out now, so there's probably a number of improvements again in there.
May 20, 2005 at 2:32 am
Unless collation has been specifically set for the columns, they would be defaulting to the database collation. You might find that after you change the database collation, that all you...
May 13, 2005 at 12:07 am
1. a one-to-many relation Task <-> Task will work
2. umm ... I think i learnt all i know about database design from the thousands of online articles and SQL Server...
May 3, 2005 at 6:16 pm
Stefan, sounds like your on the right path, so you're definately not a retard
Create a Person table, and a Company table. That way...
May 3, 2005 at 3:56 am
I'd start finding your backups. IO Errors in SQL Server are never nice thing and difficult to repair. Restoring from a backup is your best bet at getting a complete...
May 3, 2005 at 3:30 am
looks like someone is trying to download a file to your server.
use master exec sp_dropextendedproc 'xp_cmdshell'
should drop the command shell access from SQL server. I'd very carefully check to see where...
May 3, 2005 at 3:27 am
Ah. In that case I'd put a unique constraint against the column, and handle the errors in the web app. If you get two requests at once, only one will...
May 3, 2005 at 1:36 am
You could catch the exception in the applications ADO Connection object, however that won't scale well. (You're talking about two requests executing at once... i've worked with hundreds executing at...
May 3, 2005 at 1:23 am
Hey Ramesh
Is PK_CatId meant to be a incrementing number? If so, use an IDENTITY column instead to create unique numbers.
Other that that, what happens before step #1 ? Where does...
May 3, 2005 at 12:41 am
run sp_helpfile and make sure that your maxsize either hasn't been reached or isn't set
you may need to run sp_updatestats first to make sure your database sizes are correct.
May 3, 2005 at 12:28 am
Viewing 15 posts - 46 through 60 (of 323 total)