Viewing 15 posts - 18,511 through 18,525 (of 26,489 total)
PiMané (11/3/2009)
The data files, along with the system databases (data and log), are on a RAID10.
The log files are on a RAID1 and tempdb has a RAID1 of it's...
November 3, 2009 at 10:34 am
Run the following:
select * from msdb.dbo.restorehistory
November 3, 2009 at 10:31 am
People still have pagers??
If you already have the pager(s) check with the company and see if you can send email alerts via them. Many years ago at another company...
November 3, 2009 at 10:26 am
Totally forgot about those posts. Sad thing, they weren't that long ago. 😉
November 3, 2009 at 10:19 am
PiMané (11/3/2009)
Thanks and sorry for the confusion..
But since these databases aren't very used, they are important but not read/write intensive, there's no need to move the log file to the...
November 3, 2009 at 10:15 am
PiMané (11/3/2009)
No. Should I've done that? Doesn't SQL does it auto like it does with tempdb?Or since tempdb is recreated every time SQL starts was the reason it didn't fail?
Pedro
TempDB...
November 3, 2009 at 10:13 am
After running the ALTER DATABASE command and shutting down SQL Server, did you move the mdf and ldf files to their new locations before starting SQL Server again?
November 3, 2009 at 9:32 am
Whic actually means we aren't in a position to know what is best for them. We have asked for clarification and now we need to sit back and wait.
November 3, 2009 at 9:22 am
It would also help if you provided the DDL (CREATE TABLE statement(s)) for the table(s), sample data (as INSERT statements). What you have provided so far really isn't enough.
For...
November 3, 2009 at 9:19 am
However, it would also help if the OP would elaborate as to what the problem or issue is. Several questions have been asked seeking clarification which has not been...
November 3, 2009 at 9:02 am
Gianluca Sartori (11/3/2009)
I set 7 posts per page, took the page number, multiplied for PI and divided it by the distance...
November 3, 2009 at 5:18 am
Curious,you looking for something along these lines?
create table dbo.Ticket (
TicketId int identity(1,1),
UserAssigned varchar(32),
UserData varchar(512) null,
...
November 2, 2009 at 9:29 pm
Another thing you may consider. If you want to capture the data causing the error, you can insert that data into a table variable defined for that function, then...
November 2, 2009 at 8:46 pm
My take on table aliases is simple, use them even in single table queries. Two reasons for this, first, you never know when an additional table may be added...
November 2, 2009 at 8:42 pm
You can also start here[/url] and make appropriate changes to move the data instead of just deleting it. One way in SQL Server 2005 is to use the OUTPUT...
November 2, 2009 at 8:36 pm
Viewing 15 posts - 18,511 through 18,525 (of 26,489 total)