Viewing 15 posts - 3,106 through 3,120 (of 3,738 total)
You can check out the size of the database. You can use sp_helpdb.
Then you simply need to increase the size of the database.
If you are maxed out then users can't...
May 15, 2011 at 1:18 pm
It does not matter how much disk space is available.
You need to check the size of the database and increase it.
How to increase the size of a Database:
http://msdn.microsoft.com/en-us/library/aa197143(v=sql.80).aspx
May 15, 2011 at 1:08 pm
thysvdw (5/15/2011)
We classify customers based on the net_sales accumulated over a 12 month period, eg. customer with net_sales over $3,000 is gold...
May 15, 2011 at 12:45 pm
Luz provided you with a good solution.
Per BOL, information about temporary tables:
Temporary tables are automatically dropped when they go out of scope, unless explicitly dropped by using DROP TABLE:
A...
May 15, 2011 at 12:35 pm
Is this a Distributed System question or a Mirroring question?
May 15, 2011 at 12:18 pm
A quote from:
http://stackoverflow.com/questions/892351/sql-server-2005-and-temporary-table-scope
A local temporary table that is created in a stored procedure is dropped when the procedure ends; other stored procedures, or the calling process, can't see them.
Other...
May 15, 2011 at 12:05 pm
Marc Bizzar (5/15/2011)
In a asp.net WebForm, based on MSSQL 2008, i called a Procedure, in which it is declared and filled a #Temp_Table.
Then when the user check...
May 15, 2011 at 11:55 am
Oracle_91 (5/15/2011)
How does the maxsize of the data file effects this???
Could you please elaborate with an example.
Am really wanted to know why this happens.
If the maxsize is specified on a...
May 15, 2011 at 11:51 am
Marc Bizzar (5/15/2011)
"I'd guess the connection is closed and reopened leading to the temp table getting deleted in between."
Perhaps I'm not understanding you correctly but the issue has to...
May 15, 2011 at 11:42 am
The maxsize of the data file can cause this.
Increase the size of the database.
You can modify in EM or in Query Analyzer:
http://msdn.microsoft.com/en-us/library/ms175890.aspx
USE master;
GO
ALTER DATABASE AdventureWorks2008R2
MODIFY FILE
...
May 15, 2011 at 11:33 am
balasach82 (5/15/2011)
Is there any other way to Import PDF documents into DB2 table (BLOB) column? I tried with Import Column in SSIS, but the pdf could not be retrieved from...
May 15, 2011 at 11:20 am
balasach82 (5/15/2011)
Now, tested a select query with execute sql task,getting error:
SQL02024:TableName in USERNAME type *FILE not found......
Note: Even the Dev people who have admin access to DB2...
May 15, 2011 at 11:11 am
What happens when you click on test connection, in the Connection Manager for the DB2 Data Provider?
Exclude the pdf, can you SELECT from any DB2 Table? Could you create a...
May 15, 2011 at 10:43 am
balasach82 (5/15/2011)
The dev team informed that the extraction wasnt successful. I didnt get the specific details; will try to get the error msg.
Does this work in the Development environment?
Do you...
May 15, 2011 at 10:21 am
balasach82 (5/15/2011)
May 15, 2011 at 10:13 am
Viewing 15 posts - 3,106 through 3,120 (of 3,738 total)