Viewing 15 posts - 8,281 through 8,295 (of 26,490 total)
L' Eomot Inversé (3/28/2013)
BrainDonor (3/28/2013)
Lynn Pettis (3/27/2013)
What to make of this?May not be what I was thinking. Good.
"I'm a DBA, it turns out"
How do you suddenly discover that you're...
March 28, 2013 at 8:50 am
Just another reason to use table aliases in your code, Microsoft has deprecrated 3- and 4-part naming conventions in the select list. These will not be supported in a...
March 28, 2013 at 8:48 am
Add on ORDER BY where you concatenate your values:
IF object_id('tempdb..#testEnvironment') IS NOT NULL
BEGIN
DROP TABLE #testEnvironment;
END;
CREATE TABLE #testEnvironment ([Sample_ID] INT, [Rep_ID] INT, [Result] VARCHAR(20))
INSERT INTO #testEnvironment
SELECT 1, 1, 'O152' UNION...
March 28, 2013 at 8:43 am
SQLRNNR (3/28/2013)
Lowell (3/28/2013)
BrainDonor (3/28/2013)
Lynn Pettis (3/27/2013)
What to make of this?May not be what I was thinking. Good.
"I'm a DBA, it turns out"
How do you suddenly discover that you're a...
March 28, 2013 at 8:35 am
writearjun53 (3/28/2013)
Yes I have read article and found the solutionThanks all.
Regards,
Arjun
You say you found the solution, forum etiquette would have you share your solution for others.
March 28, 2013 at 8:26 am
KoldCoffee (3/27/2013)
Lynn, I'm a DBA, it turns out. Does that mean that the list I am getting when I do select * from sys.database_principals is complete afterall?
If you have...
March 27, 2013 at 6:14 pm
asita (3/27/2013)
thank you veru much for your immediate response, could you please see the attached expected result,
if possible please get the results like that
i greatful to your help
thanks alot
best...
March 27, 2013 at 3:55 pm
Your DBA can create a signed stored procedure that runs with necessary permissions to allow the procedure to return to the user that data requested. I don't have the...
March 27, 2013 at 3:40 pm
What to make of this?
May not be what I was thinking. Good.
March 27, 2013 at 3:35 pm
KoldCoffee (3/27/2013)
Lynn, would you please not reply if you don't have an answer?
I have a possible answer, but I'm not going to give it to just anyone. If you...
March 27, 2013 at 3:34 pm
Are you the DBA? If not, I would talk to your DBA.
March 27, 2013 at 3:29 pm
The two T-SQL functions, DelimitedSplit8K and DelimitedSplitN4K, that are attached to the article I referred you to are optimized to split varchar(8000) and nvarchar(4000) strings.
I would read the article and...
March 27, 2013 at 3:28 pm
Does this mean you don't see all the users when you run the query?
March 27, 2013 at 3:12 pm
KoldCoffee (3/27/2013)
Better yet, Lynn, if you have a diagram that contains views and how they're related to system tables, post it!
Nope, sorry or I would.
March 27, 2013 at 3:09 pm
Probably should have kept this with the other thread as it is related, but I have to ask; who is going to be running this procedure, normal users or DBAs?
March 27, 2013 at 3:05 pm
Viewing 15 posts - 8,281 through 8,295 (of 26,490 total)