Viewing 15 posts - 646 through 660 (of 1,539 total)
I dont think i understood your requirement fully.
I guess u want to insert some records in a table which is already having records from the past year. In this case...
July 24, 2009 at 8:17 am
viji (7/23/2009)
1. KILL the processes which is active / suspended / sleeping etc on the database 😀
Instead of killing all active sessions, you can fire this simple statement to...
July 24, 2009 at 8:12 am
use [server2\YourInstanceName] without quotes.
July 24, 2009 at 8:08 am
venu_ksheerasagaram (7/24/2009)
I have an issue here which goes as follows;
1) How to give dbo_access to a user?
2) What is the use of schemas?
3) What is the difference between Schemas...
July 24, 2009 at 8:07 am
Patricia Johnson (7/24/2009)
July 24, 2009 at 8:05 am
joshua.aanderson (7/24/2009)
Is there an easy way to undo that without comparing the data in...
July 24, 2009 at 8:03 am
Lynn, TAT=Turn Around Time (not a defined phrase as per the SDD-service delivary document, but we use it for TTO+TTR).
eg. in one of our deliveries, Time to own the tickets...
July 23, 2009 at 9:00 pm
If you want to restrict the number of characters to 7, you may want to include the check for length as well.
create table test
(
id int identity(1,1),
tag varchar(10) constraint ck_test check...
July 23, 2009 at 9:42 am
I created a test table with tag column...
create table test
(
id int identity(1,1),
tag varchar(10) constraint ck_test check ((upper(tag) not like '%[I-O]%') and (tag like '%[0-9]%' or upper(tag) like '%[A-Z]%'))
)
see if this...
July 23, 2009 at 9:40 am
torpkev (7/23/2009)
If the maintenance plan appends by default (which I've never noticed before to be honest) - then I'll need to go through every database and change that el-pronto!
I...
July 23, 2009 at 8:50 am
I dont think owning a database by sa or any other user should be of any concern. What matters is who is performing 'what' in your database. So creating users...
July 23, 2009 at 8:36 am
I'd agree with Steve's concern of backup up your database in a single file by appending files to it. If something happens to the file, none of the backups will...
July 23, 2009 at 8:33 am
Express edition (which is free) might not be useful to you as the maximum database size if 4GB. Developer's edition or any other edition will allow you to attach a...
July 23, 2009 at 8:17 am
This is due to orphaned user name1.
check out for sp_change_users_login in BOL.
Following example from BOL Should help you.
USE YourDB;
GO
EXEC sp_change_users_login 'Auto_Fix', 'Name1', NULL, 'New_Password';
GO
July 22, 2009 at 10:14 am
thanks for the link. very useful.
we found that tempdb growth is due to a ssis job which is using tempdb heavily. We're waiting from the developement team for further updates....
July 22, 2009 at 7:04 am
Viewing 15 posts - 646 through 660 (of 1,539 total)