Viewing 15 posts - 32,461 through 32,475 (of 39,818 total)
Easiest way to do this (if you need to, answer above questions), is to create a table (tablename, idreset). Have the user insert a value into this table, say the...
March 26, 2007 at 8:46 am
First, which version of SQL Server. Second, you posted this in Notification Services. Please post in the forum related to your issue, probably Admin or General in this case.
March 26, 2007 at 8:41 am
This looks like homework. Please do not ask us to solve your homework questions. You should be digging in and writing your own SQL.
March 26, 2007 at 8:40 am
Please don't cross post.
Discussion here: http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=23&messageid=353763
March 26, 2007 at 8:39 am
I'd make the space and copy it over. Any network hiccups will cause your restore to abort.
March 26, 2007 at 8:38 am
I definitely like Robert's approach.
I used to do this with objects by making my own DB, then storing a copy of sp_configure and sysobjects for each db. Then I'd have...
March 26, 2007 at 8:37 am
A latch is a type of lock and a timeout indicates that too much time expired. Are you getting errors from clients?
Blocks/locks/timeouts are not serious. They indicate your server, usually...
March 26, 2007 at 8:35 am
So they are not failing either? Are there any common attributes in what they do/access?
I'd enable some logging and see if a log is generated. Be sure SQL Agent is...
March 26, 2007 at 8:34 am
Event logs have lots of filters. You should be able to move out the SQL Login events easily.
March 26, 2007 at 8:30 am
Registration for the BI conference is open at http://www.microsoftbiconference.com/
March 26, 2007 at 8:25 am
What's the index? You can see if you have queries that are even capable of using it if you look at the first col in the index and the columns...
March 25, 2007 at 2:47 pm
backup transaction mydb with no_log
will clear space as well. Then you can run the backup.
Be sure to setup log backups after this along with data backups.
March 25, 2007 at 2:46 pm
Something like this
update xx
set fld4 = fld1 + total
where fld1 mod 2 = 0
for one of them. The other would be
update xx
set fld5 = fld2 +...
March 25, 2007 at 2:46 pm
No, no other way around it. The thing you can do is run a report that compares version numbers. They increment by 8 if I remember, so a change of...
March 23, 2007 at 12:25 pm
While I've rarely had performance issues with RAID 5, there are definitely good arguments to use RAID 10 instead if you can afford the space.
If possible, try to get an...
March 23, 2007 at 12:24 pm
Viewing 15 posts - 32,461 through 32,475 (of 39,818 total)