Viewing 15 posts - 781 through 795 (of 1,170 total)
Bouke Bruinsma (11/25/2013)
November 25, 2013 at 12:56 pm
Are you inputting the right server/instance name?
Is the service for SSIS run?
Under which account it is running? check the account permissions.
Regards
IgorMi
November 23, 2013 at 10:52 am
You have an option "Keep index online while reindexing" in the Rebuild Index Task element in SSIS. Pressing button "View T-SQL" will script the indexes with the ONLINE=ON.
You can also...
November 22, 2013 at 1:06 pm
SQL_Surfer (11/22/2013)
Trying dropping the user from the db and recreated it and still same error.
Then it is may be not your problem?
November 22, 2013 at 9:12 am
SQL_Surfer (11/22/2013)
Sorry I was using the wrong DB context. Yes SID exactly matches.
Did you try, for a disabled login which you enabled, to drop the user and the recreate it...
November 22, 2013 at 8:40 am
SQL_Surfer (11/22/2013)
it didn't return any record for that user from sys.database_principals. But if you go through ssms, this user has correct permisson to the db.
If this query does not return...
November 22, 2013 at 8:35 am
Try only for one user which login was disabled.
(1) drop the user and then (2) recreate the user
and see how it's going to be.
Regards
IgorMi
November 22, 2013 at 3:20 am
Hi RBarryYoung,
Your script is useful. I tested it and it failed on an offline database. You can update the code so that only online databases are taken in consideration.
Thanks and...
November 22, 2013 at 3:01 am
registrazioni 75612 (11/21/2013)
Thank you so much.I've identity columns but,
I've have to intercept updated datas.
ty
max
CDC (change data capture) is aimed for that. I think it's the best option for you.
Regards,
IgorMi
November 21, 2013 at 3:05 pm
What do you mean by "SQL Paging"?
November 21, 2013 at 2:32 pm
November 21, 2013 at 5:36 am
When you run cliconfg.exe, do you find an alias for your sql server there?
Regards,
IgorMi
November 21, 2013 at 5:25 am
Did you check this
select sp.name,sp.[type],sp.type_desc,sp.is_disabled, sp.default_database_name,sp.modify_date
from sys.server_principals sp
and then
ALTER LOGIN [login_name] ENABLE
GO
Regards,
IgorMi
November 21, 2013 at 5:21 am
In general, having indexes on foreign keys is good.
Once, I have created a bunch of supporting missing indexes for FKs and the performance gain came. The goal then was...
November 21, 2013 at 2:19 am
Is it possible some code somewhere to make some mess, like CHECKPOINT, or change the recovery model and get it back. I don't think option auto shrink is turned on...
Strange...
November 20, 2013 at 2:13 pm
Viewing 15 posts - 781 through 795 (of 1,170 total)