Viewing 15 posts - 1 through 15 (of 15 total)
Noel, you certainly found it!!!!!! That did the trick. Thanks a million.
June 30, 2005 at 8:45 am
No permission problem. I asked one of the other adminstrators to create a table in the master DB and it failed as well with the same error.
I'll let you know...
June 29, 2005 at 1:34 pm
Not sure yet. The DBA is looking into that restore process. Every minute or so it tries to restore a DB. This probably looks some systemtables.
June 29, 2005 at 1:32 pm
Follow up
I found out that another process is continuously trying to restore a DB. This is probably causing the weird behaviour.
Thanks for the quick replies.
Peter
June 29, 2005 at 1:16 pm
I used
--------------------
use master
Select Name, XType, user_name(uid) as Owner from dbo.SysObjects where name like '%test1%'
--------------------------
I also tried to create a table called 'abracadabra' (that certainly does not exist) but it failed...
June 29, 2005 at 12:49 pm
-----
use master
CREATE TABLE [test1] (
[pk] [char] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
------
Nothing else. Very strange.
June 29, 2005 at 12:14 pm
Ok - I ran the following command in QA
use master
CREATE TABLE [test1] (
[pk] [char] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
Server: Msg 2714, Level 16, State 6, Line 1
There is...
June 29, 2005 at 12:02 pm
further info
I cannot create any table in the master DB.
I always get the error message
'test' table
- Unable to create table.
ODBC error: [Microsoft][ODBC SQL Server Driver][SQL Server]There is already...
June 29, 2005 at 11:48 am
The migration tool seems to create temporary tables in the master DB.
I have no idea which account was used to create this table. I'm not even sure whether the object really exists...
June 29, 2005 at 11:44 am
Probably the best solution. But I'll use a function instead of a stored procedure.
Thanks,
Peter
August 18, 2003 at 5:48 am
Jeremy. Your solution is very similar to using a cursor.
My solution was:
==============================
declare @MaxValue as int
Select @maxValue = Max(*) from SoldItems
SELECT IDENTITY(int, 1,1) AS ID_Num
INTO ##SoldItemsTemp
FROM SoldItemsImport
Insert into SoldItems
select ID_Num...
August 13, 2003 at 5:06 am
Brokenrulz,
I cannot change table "soldItems". This table is generated by a third party application.
Jeremy,
The problem is not selecting the items from SoldItemsImport. I need all the rows from...
August 13, 2003 at 4:01 am
Hi Frank,
I have the .Net framework installed. Any ideas?
August 1, 2003 at 1:12 am
I tried to use it but got an error message "request failed".
August 1, 2003 at 12:48 am
Thanks for the replies. I'll look into the solutions mentioned. I thought of another one myself. I could create an XML file and do a bulkupload via...
June 30, 2003 at 5:33 am
Viewing 15 posts - 1 through 15 (of 15 total)