Viewing 15 posts - 5,326 through 5,340 (of 7,168 total)
Running the upgrade advisor against a full day's trace is a good call, especially if you have apps issuing embedded SQL...the more you can capture and analyze the better off...
July 28, 2011 at 8:41 am
mmohan.net (7/27/2011)
Here is the issue I’m facing.
My task is to get guid’s from database field and run few updates based on the guid values.
I had taken execute sql task...
July 27, 2011 at 11:03 pm
Thanks for posting back!
ranjeeth.pt (7/27/2011)
Since we are using sql server 2005 we forgot to enable TRUSTWORTHY bitALTER DATABASE [DB_NAME] SET TRUSTWORTHY ON
u can check this blog w.r.t TRUSTWORTHY
From the article...
July 27, 2011 at 10:52 pm
chrisph (7/27/2011)
July 27, 2011 at 8:03 pm
homebrew01 (7/27/2011)
Is the database backup file changing nightly, but the databse will ulimately have the same name each day ? Could...
July 27, 2011 at 7:52 pm
PERSISTED was a nice idea but it can't be done due to the data access the UDF is trying to do.
July 27, 2011 at 5:15 pm
Here's a quick demo SQLTestUser to show the technique:
IF OBJECT_ID(N'tempdb..#temp_table') > 0
DROP TABLE #temp_table ;
CREATE TABLE #temp_table
(
type_smallint SMALLINT,
type_bit BIT
) ;
INSERT INTO #temp_table
...
July 27, 2011 at 4:16 pm
Ahhh...got it. Sorry, I was looking at your latest "is not quite a performance-booster" comment as a claim of loss of performance or something.
<still_learning>I know collations as a set of...
July 27, 2011 at 3:21 pm
Anytime, HTH 🙂
July 27, 2011 at 3:15 pm
Jeff, I figure you were trying to dilute things a bit here, which I do too depending on the forum as it were, but I want to make sure we...
July 27, 2011 at 2:25 pm
Regarding item 3: granting permissions at the schema level simplifies things significantly. If your requirements allow it I would do that rather than going to the object level.
Regarding item 4:...
July 27, 2011 at 1:15 pm
Dan explains a one-size-fits-all approach that I think is elegant and is the one I use and recommend unless "granular or complex" security requirements exist:
July 27, 2011 at 1:08 pm
Please post the resolution so others can see in case they had the same error or similar issue.
July 27, 2011 at 1:04 pm
sqlnaive (7/20/2011)
Hello Everybody, I am looking out for queries to get following information1. To get all the members associated with a Role
SELECT roles.name AS role_name,
...
July 27, 2011 at 12:58 pm
Viewing 15 posts - 5,326 through 5,340 (of 7,168 total)