Viewing 15 posts - 556 through 570 (of 1,640 total)
Thanks that is helpful information to me, I will probably need to change the code in stored procedure then in the database collation, for the latter takes time, and the...
May 27, 2014 at 1:54 pm
Yes, I did see issues before that happened on servers with different collations. Like you said
"to run into some issues in cross database queries , and maybe some queries that...
May 27, 2014 at 1:45 pm
Thanks, lowell
Yes, if we need to convert the collation, I need recreate the database, recreate the tables on the new server, then import data.
I have 3 databases with a lot...
May 27, 2014 at 1:30 pm
Thanks Arron, I do need the detailed explanation that helps me to clarify.
I knew earlier there was an option for directing errors not to fail the package, but not clear...
May 20, 2014 at 9:44 am
I found a solution using
AND name =ISNULL(@dbname, name)
that seems working fine.
May 16, 2014 at 3:47 pm
Thanks, we check in all the files in subversion. so we have old copies, I do make another copy of the entire project.
April 15, 2014 at 9:55 am
good and clear answer, that is exactly the answer I am looking for.
Thanks,
April 14, 2014 at 9:57 am
Sorry, check the requirement with the user again, she modified the requirment, it is actually the user entered middle name with a double quote around it, the case is...
March 27, 2014 at 10:33 am
I have immediate notification of my post.
Probably blocked, I will check with out network admin
March 26, 2014 at 3:30 pm
Because it is daily truncate and import the data, I actually don't want to reindex /reorg if possible. It takes long time.
I do use maintenance solution of http://ola.hallengren.com/
for other...
March 12, 2014 at 1:00 pm
I rewrite the script as this:
USE master
GRANT VIEW SERVER STATE TO [mydomain\sys$swind]
GRANT VIEW ANY DEFINITION TO [mydomain\sys$swind]
GRANT EXECUTE ON xp_readerrorlog TO [mydomain\sys$swind]
EXECUTE sp_MSforeachdb 'USE [?]; ...
January 22, 2014 at 10:40 am
Thanks, tried the way you test, it looks like if the user is added to the database without any other permissions, and it has server role view server definition, it...
January 22, 2014 at 9:45 am
george sibbald (1/21/2014)
as Erland says you a likely going to have...
January 21, 2014 at 4:25 pm
Erland Sommarskog (1/21/2014)
That is, the user can see the definition of all...
January 21, 2014 at 4:22 pm
Erland Sommarskog (1/21/2014)
January 21, 2014 at 3:57 pm
Viewing 15 posts - 556 through 570 (of 1,640 total)