Viewing 15 posts - 346 through 360 (of 1,248 total)
How did you know there is no other application running against your SQL Server?
You may try sp_who2 active or SELECT * FROM master..sysprocesses to check activities on your SQL Server.
You...
May 27, 2008 at 8:06 pm
From your error message, it does not seem to be a security issue, at least at this moment. The error is VBScript error with losing definition of an object.
Please check...
May 27, 2008 at 2:22 pm
In my memory, we cannot alter a column to IDENTITY, not for CE.:hehe:
May 22, 2008 at 3:00 pm
I agree with mobasha's comment. At this moment, I have not got any clean solution since I post this question a week ago.
Also, I would like to show my thanks...
May 22, 2008 at 2:55 pm
In SQL 2005, you can check sys.syscolumns table.
May 21, 2008 at 8:58 pm
May the following links help.
http://www-912.ibm.com/s_dir/slkbase.NSF/0/5a3856efecb7f19f8625672b006cee76?OpenDocument
May 21, 2008 at 8:48 pm
Collation can be set at different levels, such as database-, table-, and column-level. It is all based on your desire.
May 21, 2008 at 4:03 pm
Thank you for your input.
How about the packages, assemblies, ... in the system databases?
May 21, 2008 at 3:58 pm
Let me see whether or not I can help the "good boy" :hehe:
SELECT Company, MAX(Employee) FROM yourTable GROUP BY Company
May 21, 2008 at 3:54 pm
The script is acceptible in SQL 2005, but not in SQL 2000. You need to remove the quotes for default values.
May 21, 2008 at 9:13 am
As far as I know, a web server uses an application account to connect to a database server. If you kill its spid, it will connect the database right away....
May 20, 2008 at 9:13 pm
As far as I know, there is no issue in changing compatibility level on SQL Server side. What you need to do is to check whether or not your application...
May 20, 2008 at 3:43 pm
You cannot find original size of a database.
May 19, 2008 at 3:42 pm
Viewing 15 posts - 346 through 360 (of 1,248 total)