Viewing 15 posts - 46 through 60 (of 499 total)
Ssssshhhhhhhhhhhhhhhhhhhhhhhhhhhh!
you might wake me up
September 4, 2012 at 2:10 pm
Orphaned users are easy to fix:
-- show users not mapped to a login
EXEC sp_change_users_login 'Report'
-- map database user OrphanedUser to Login OrphanedUser
EXEC sp_change_users_login @Action='Update_One', @UserNamePattern='OrphanedUser' , @LoginName='OrphanedUser'
September 4, 2012 at 2:06 pm
Using one of Jeff Moden's splitter functions
DECLARE @pString VARCHAR(MAX) = 'BUILTIN\ADMINISTRATORS: [System Admin]YES;[Security Admin];[Server Admin];[setup Admin];[Process Admin];[Disk Admin]YES;[Database Creator];'
DECLARE @pDELIMITER CHAR(1) = ';'
;WITH SPLITS AS (
SELECT ItemNumber = ROW_NUMBER() OVER...
September 4, 2012 at 1:53 pm
It could be due to two machines on the network with the same name.
Check your event log, see if you have the kerberos mentioned in the above.
Also try google for...
May 31, 2012 at 6:42 am
Lynn Pettis (5/11/2012)
TGIF
Already home and cracked a bottle 😀 (on this side of the pond)
May 11, 2012 at 12:52 pm
L' Eomot Inversé (5/11/2012)
Tom Brown (5/11/2012)
L' Eomot Inversé (5/11/2012)
90-10 rule (Sturgeon's law - actually Sturgeon's second law: his first law is the Nothing rule)
Hey - I can apply this...
May 11, 2012 at 12:51 pm
L' Eomot Inversé (5/11/2012)
eccentricDBA (5/11/2012)
Revenant (5/11/2012)
EL Jerry (5/11/2012)
Brandie Tarvin (5/11/2012)
Ray K (5/11/2012)
Hawaii (vacation planned for October!)50
50/50
20/20
80–20 rule
90-10 rule (Sturgeon's law - actually Sturgeon's second law: his first law is the...
May 11, 2012 at 12:00 pm
Another reason I found for this error was spaces in the filename or path
sys.fn_trace_gettable('C:\Documents and Settings\tbrown\My Documents\share\Trace20120403 1200.trc', null)
caused the error, whereas the same trace file renamed
sys.fn_trace_gettable('C:\temp\Trace20120403_1200.trc', null)
worked fine. ...
April 4, 2012 at 4:39 am
Koen Verbeeck (3/23/2012)
The Dixie Flatline (3/23/2012)
What is "google"?
<pedantic>
<sarcasm>
Apparently some site where you can find forums where people will give you free advice instead of doing anything yourself...
<\sarcasm>
^^No closing tag for...
March 23, 2012 at 7:56 am
We use the CLR because of the complexity of the processing. It probably could be written in a cursor - but it would be a maintenance headache, especially as...
March 23, 2012 at 2:47 am
Just for completeness here are a few things to try if your CLR performance is unacceptable.
1) Despite the title of this thread, DO use SqlBulkCopy - its much faster than...
March 21, 2012 at 10:22 am
I should have figured. The post was a month old.
Just getting into CLR stuff myself, all sorts of complexities to keep me occupied 😀
March 21, 2012 at 8:05 am
If you select the Build...Deploy option in VS (at least in VS 2010), then Visual studio creates the deployment .SQL in the bin/debug or bin/release directory along with your DLL....
March 21, 2012 at 7:39 am
Thanks for the suggestions but, ...
well I'll just have to eat crow on this one :blush:
Turns out I had my timing code in the wrong place in the CLR,...
March 21, 2012 at 7:21 am
A good week is when i get unexpected gifts: I did a little website work for my brother-in-law.
(though I may have hinted about the WPF book)
March 15, 2012 at 5:36 am
Viewing 15 posts - 46 through 60 (of 499 total)