Can't allocate space for object '' in database 'tempdb',How can I do?when I run system procedure,I got following messages :
Can't allocate space for object '' in database 'tempdb' because the
'system'segment is full. If you ran out of space in syslogs, dump the
transaction log.
Otherwise, use ALTER DATABASE or sp_extendsegment to increase the size of
thesegment.
Failed to allocate disk space for a work table in database 'mydb'. You may
be able to free up space by using the DUMP TRANsaction command, or you may
want to extend the size of the database by using the ALTER DATABASE
command.
thanks.
allan wrot...
can't allocate space for object 'syslogs' in database 'master' because 'logsegment is fullHi All,
I'm working with Sybase 12.0 and Aix 5.1
First of all, one small history:
I worked with sybase 11.9.2 and I never received the message about the
problem with log of the master database.
After changing to Sybase 12.0 this problem was occurred frequently. I added
another 3 mb to master size but again this problem occurs.
Any idea about what's happening?
Thanks
Sergio
ps: I don't have any task that work with master database. I don't see any
explanation to grow of the log master.
In 12.0 a new column was added to syslogins to track unsuccessful...
''''''''''''''''''''Name: haznen
Email: haznenatyahoodotcom
Product: Gran Paradiso Alpha 8
Summary: ''''''''''''''''''''
Comments:
''''''''''''''''''''''''''''''''''''
Browser Details: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9a1) Gecko/20061204 UGES/1.7.2.0 GranParadiso/3.0a1
From URL: http://www.mozilla.org/projects/granparadiso/
Note to readers: Hendrix gives...
'''''Name: mario
Email: ramar17atfastwebnetdotit
Product: Gran Paradiso Alpha 2
Summary: '''''
Comments:
K:
Browser Details: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9a2) Gecko/20070206 GranParadiso/3.0a2
...
'do' won't 'do' if '/'Greetings to All from Au,
Have a NetWare Perl 5.8.4 and wanted to tweak File\Spec\NW.pm to try and
standardise on '/' separators.
If I run a test script (t/uni/lower.t) with an unmodified NW.pm, it
calls t/uni/case.pl, that, in case.pl, (when the path separators are
'\'), the $file is '..\lib\unicore\To\Lower.pl' and the following code
portion works, with $simple getting a returned table:
sub casetest {
my ($base, $spec, $func) = @_;
my $file = File::Spec->catfile(File::Spec->catdir(File::Spec->updir,
"lib", &qu...
Could not allocate space for object 'SiteLog' in database 'dmconsulting' because the 'PRIMARY' filegroup is full.
I recieve this error after changing my view options for events (standard DNN Module).
Exception Details: System.Data.SqlClient.SqlException: Could not allocate space for object 'SiteLog' in database 'dmconsulting' because the 'PRIMARY' filegroup is full.
I have emailed my site host that provides me with the Sql database. Currently I am using only 3% of my alloted space in SQL Server.
I thought I would check here to see if any one has ideas.
At thsi point I can not access my site. Just keep getting this error.
I am newbire with DNN. I have liked what I have seen up to now.
A...
'''Name: L Lachowsky
Email: e2brutus_10atyahoodotcom
Product: Firefox
Summary: '''
Comments:
why duddn this surprise me... I change default server from IE to
Mozilla, and then i get error messages. well, shud I decide to not get
on my computer with Mozilla..or shud I risk security breeches with
IE....hmmm at least i can get on the internet with IE
Browser Details: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5
From URL: http://hendrix.mozilla.org/
Note to readers: Hendrix gives no expectation of a response to this fee...
Cast from type ''''DBNull'''' to type ''''String'''' is not valid.
How do I avoid getting this error:
Cast from type ''''DBNull'''' to type ''''String'''' is not valid.
I am trying to get values from the database into a form for updating using a Datareader, SQL is set to allow nulls for certain fields as they are not required but the only way I can get the form to display is by adding a space in SQL.
Is there another way around this?
Check if it is equal to DBNull.Value first and if it is, don't do the cast.Stanley Tan
theSpoke Blog
Where in the code does it need to go?
I am using the following and it's the profile that isn't always requi...
table_info('','','','%') cannot return any typesI was recently confirming table_info special cases and discovered the case for getting table_types cannot work.
table_info('','','','%')
should return a list of table types but it returns a list of empty strings instead:
my @types = $h->tables('', '', '', '%');
print "all types:\n", join("xxx\n", @types), "\n";
# should output something like:
# "dbo"
# "INFORMATION_SCHEMA"
# "sys"
# and actually outputs:
xxx
xxx
It seems to be down to the following ...
'b'..'a'Hello.
I'm using defferent 5.6.0's for Win32.
I wonder wheter following behaviour is intentional or not:
d:\>perl -e "print 'b'..'c'"
bc
d:\>perl -e "print 'b'..'a'"
bcdefghijklmnopqrstuvwxyz
I expected empty list in latter case, like in
perl -e "print 'bb'..'a'"
<!ENTITY Vadim REALLIFE "Vadim V.Konovalov, St.Petersburg, Russia">
&Vadim;
On Wed, Sep 20, 2000 at 03:14:41PM +0400, Konovalov, Vadim wrote:
> Hello.
>
> I'm using defferent 5.6.0'...
'IN' Clause or 'OR'Hello,
[1]: select * from TABLEA where COL1 IN('value1','value2''valu3'....)
[2]:select * from TABLEA where COL1 = 'value1' OR COL1= 'value2' OR
COL1='valu3'.
TABLEA is a huge table and it has non-clustered index on COL1. Among the
above 2 queries, which query will give me the better performance or fast
response and WHY?
What is the difference between 'IN' and 'OR' clauses as for as Sybase
Optimization is concerned. Which is the better one to be used on huge
tables.
Thanks.
Mac
An IN list is treated ...
'or' or 'union'Hello
I was just wondering, in general what is better to use, an 'or' clause in a
select or a 'union' to join two selects together. Do both statements create
work tables?
Many thanks
Alex
I think OR will be better than union. because suppose u have 3 tables and using
OR u can join table a and table b and table c so each table will have only one
read. but using union
you will join table a and table b and in another query of union u will use
table (a or b) and table c
so ur one read is more in union .
Ramdas
Alex Cheung wrote:
> Hello
>
>...
Again with the 'reset' and 'can't be found' stuff...Name: William Jones
Email: jbillyjonesatyahoodotcom
Product: Firefox
Summary: Again with the 'reset' and 'can't be found' stuff...
Comments:
Hello Again FireFox, Listen...I'm just a simple guy, a 'dial-up baby
boomer' who's had to learn the hard way all the way through. I recently
sent a similar e-mail requesting assistance with this ridiculous and
incessant 'pop up' that informs me that 'my connection has been reset',
and/or, 'a problem locating page'....huh? I was just on the damn thing
and even switching from one ...
'NMDayTim', 'Psock' , 'NMTime' , 'NMFtp' can not be opened.hello,
my colleague have developed an application under c++ builder 5. so now i should undertake it and optimize it.
last days i have installed the C++ Builder 2010 testversion to get some experience on it, because i have not used it before.
when i try to compile the old project in C++ builder 2010, comes some Compile errors. Also, there are some Includes like 'NMDayTim', 'Psock' , 'NMTime' , 'NMFtp' in this old Project. they can be found and compiled in the old c++ Builder 5. but not in c++ builder 2010.
so i want to know do i solve this problem or go...