Viewing 15 posts - 91 through 105 (of 716 total)
keyun (4/7/2011)
@UMG - Can you tell me how to find version of SP & CU?
This should give you the SP and build number:
SELECT @@Version;
From the build number you can lookup...
April 7, 2011 at 10:35 am
ljf3rd-1038030 (4/7/2011)
Obviously I cant keep recreating the role and the permissions.
If the role is being lost when you run your update scripts you need to look and see what you...
April 7, 2011 at 10:14 am
Here is another link to Technet that contains this information: http://technet.microsoft.com/en-us/magazine/gg552991.aspx
Again, something written by Paul Randal.
April 7, 2011 at 10:04 am
SanDroid (4/7/2011)
Perhapse you can explain the question and provide refference material for your only correct answer?
Did you read the information that he linked to about the version store? From: http://blogs.msdn.com/b/sqlserverstorageengine/archive/2009/01/01/managing-tempdb-in-sql-server-tempdb-basics-version-store-growth-and-removing-stale-row-versions.aspx
...
April 7, 2011 at 9:59 am
sepich.eric (4/6/2011)
April 7, 2011 at 12:01 am
CirquedeSQLeil (4/6/2011)
I've seen permissions disappear from a simple alter of the proc as well (not drop/create).
Wow, we have never run into that, and we use ALTER a lot on procedures...
April 6, 2011 at 11:49 pm
What are you trying to escape the characters in? A LIKE expression in the WHERE clause? If so check the BOL documentation: http://msdn.microsoft.com/en-us/library/ms179859.aspx
Though I haven't seen the need to escape...
April 6, 2011 at 11:34 pm
My guess is that you are getting a different execution plan for a large query that is using tempdb for large sorts and/or large joins that wasn't happening on the...
April 6, 2011 at 11:30 pm
Another option if you just need a WHERE clause on the Oracle side is to use OPENQUERY:
SELECT
Local_Table.Col1,
Remote_Table.Col2
FROM dbo.Local_Table Local_Table
INNER JOIN OPENQUERY(LinkedSever, 'SELECT * FROM...
April 6, 2011 at 11:20 pm
You can try using the REMOTE join hint that tells SQL Server to try to run the process on the right side of the join. Here is an example:
SELECT
...
April 6, 2011 at 11:16 pm
How are you modifying the SPROC?
If you do like a lot of people and DROP the procedure and then CREATE it again, yes the permissions are lost. You can use...
April 6, 2011 at 11:08 pm
Thanks for the question, that is interesting to know. I have always heard everything in SQL Server is logged, but I was thinking that the version store didn't need to...
April 6, 2011 at 11:00 pm
Better is sort of figurative. In my opinion the solutions go in this order from best down:
* New install on new server, migrate data test, then do a final data...
April 6, 2011 at 5:54 pm
MyDoggieJessie (4/6/2011)
April 6, 2011 at 10:38 am
Karlier,
Are you waiting until the DMV, sys.dm_database_encryption_keys, shows that the decryption has completed before restarting the instance? (Both encryption and decryption are done as a background process.)
April 6, 2011 at 10:13 am
Viewing 15 posts - 91 through 105 (of 716 total)