Viewing 15 posts - 34,786 through 34,800 (of 39,791 total)
I have corrected the scores for people that answered syntax error. It's hard to QA all these questions and in this case, I missed the single quote.
I know that many...
July 26, 2004 at 10:51 am
You could use a trigger to force it.
create trigger mytrig on Mytable for insert, update as
update mytable
set myfield = upper(myfield)
from inserted i
where i.pk = mytable.pk
July 26, 2004 at 10:44 am
Assuming you know the PK and the fields
select a.code 'Code_a', b.code 'code_b', a.amount 'amount_a', b.amount 'amount_b'
from MyTable a, MyTable b
where a.code = 'a' and b.code = 'b'
If you want it...
July 26, 2004 at 10:42 am
It appears that you had some type of corruption in the SQL tables at the physical level. If chkdsk worked, then bcp out/bcp in , transfer to new db, etc,...
July 26, 2004 at 10:37 am
Part of the problem is the execution plans are based on the load on the server. Since I've managed people with both Oracle, DB2, and SQL Server, the SQL installations...
July 26, 2004 at 10:30 am
Did you assign the min and max to 5120?
Check sp_configure.
July 26, 2004 at 10:28 am
It should be all changes that were not committed. Does this not seem to be the case?
July 26, 2004 at 10:27 am
I don't usually recommend this, but I'd use a cursor for this. Assuming that recno is an actual field in your table, use that and run a loop. Actually you don't...
July 26, 2004 at 10:21 am
There are some things in SQL Server that are extremely intolerant of delays. Backups is one and tempdb may be another. Since it is used at a low level by...
July 26, 2004 at 8:37 am
Never tried it and I don't see the option in XP. I'll see if I can dig something up.
July 26, 2004 at 8:33 am
Good question. I'm not sure. I need to dig into the forum code a bit and see. It's from the InstantForum.com guys, so they'd need to support it.
July 26, 2004 at 8:26 am
You can use the GUI or ALTER DATABASE command to set the initial size higher.
July 23, 2004 at 2:27 pm
Can't do it retroactively. You have to setup a process to check the space once a day or so and store it somewhere. I used to do this for backups...
July 23, 2004 at 8:28 am
It's been suggested and it's on our list. I agree with you, just a few things that are broken first. We'll get to it.
July 23, 2004 at 8:22 am
You should use IP or setup a local DNS to connect. Using the servername won't work across most VPNs. Only FQDNs.
July 23, 2004 at 7:35 am
Viewing 15 posts - 34,786 through 34,800 (of 39,791 total)