Viewing 15 posts - 1,816 through 1,830 (of 7,168 total)
Check the owner of the job(s) in querstion. It may be owned by an SID that does not resolve to a valid login which could be giving SMO heartburn.
SELECT ...
February 28, 2013 at 10:36 pm
Yes, index reorganization can cause a lot of I/O depending on how much work the reorganize decides it needs to perform to organize the index. They do not cause long-running...
February 28, 2013 at 10:33 pm
Nope. The decision by the engine to use one index or another to satisfy a query will not change the contents of the resultset. The order of the resultset is...
February 28, 2013 at 10:23 pm
In addition to object ownership within a database make sure the login does not own any databases themselves or any Agent jobs.
SELECT *
FROM sys.databases
WHERE ...
February 28, 2013 at 10:11 pm
You're welcome. Thanks for the feedback.
February 28, 2013 at 11:13 am
Did you stop and start the SQL server service?
February 28, 2013 at 10:00 am
Please post the exact "invoked by" text from job history (with sensitive domain or user names masked of course).
Also, look for jobs that might kick off the job in question...
February 28, 2013 at 9:55 am
Those are some pretty basic requirements. What have you tried so far?
It sounds like you are simply looking for a tutorial on how to use the Fuzzy Lookup Transformation....
February 28, 2013 at 9:52 am
Ray K (2/28/2013)
L' Eomot Inversé (2/25/2013)
SQLRNNR (2/25/2013)
ThickThcream
Thing a thong
February 28, 2013 at 9:37 am
hjhatl-911184 (2/28/2013)
stranger things have happened. :w00t:
Indeed they have 🙂 You could always check the SID for the login on the source system and check it against your dev instance. You...
February 28, 2013 at 9:35 am
It is safe to use the dropserver/addserver method. All that does is change the underlying entry available in sys.servers.
SELECT * FROM sys.servers WHERE is_linked = 0
February 28, 2013 at 9:31 am
Seriously though, just change the destination table to have NVARCHAR instead of VARCHAR and you should be fine.
February 28, 2013 at 9:24 am
Welcome to working with Excel using SSIS 🙂
February 28, 2013 at 9:19 am
It's not required for NT logins provided they are on the same domain. The SID in that case comes from AD which is not going to change from one SQL...
February 28, 2013 at 9:16 am
Viewing 15 posts - 1,816 through 1,830 (of 7,168 total)