Viewing 15 posts - 2,956 through 2,970 (of 13,461 total)
didn't find a single list from Microsoft, but i found this one on codeproject:
http://www.codeproject.com/Articles/39131/Global-Variables-in-SQL-Server
•@@CONNECTIONS
•@@MAX_CONNECTIONS
•@@CPU_BUSY
•@@ERROR
•@@IDENTITY
•@@IDLE
•@@IO_BUSY
•@@LANGID
•@@LANGUAGE
•@@MAXCHARLEN
•@@PACK_RECEIVED
•@@PACK_SENT
•@@PACKET_ERRORS
•@@ROWCOUNT ...
November 12, 2013 at 8:05 am
Dorthy Jeff Moden has a couple of posts on this, which i'd saved in the past:
here's the specific threads in question:
http://www.sqlservercentral.com/search/?q=%22Headerless+Ragged+Right%22
basically, he uses some dos commands to make sure the...
November 12, 2013 at 6:35 am
at my last job we had a similar situation, after one core issue boiled down to the client creating poorly written triggers, which broke the application's logic. against the user...
November 11, 2013 at 9:34 am
i can think of only a couple offthe top of my head:
TCP/IP / remote connections are not enabled by default.
no Dedicated Admin Connection is available by default.
depending on the...
November 11, 2013 at 6:19 am
here's my best guess based on your post's info:
i'm explicitly aliasing the target table, so it might make it a little clearer:
UPDATE MyTarget
SET MyTarget.updtbl_lat = i.infotbl_lat,
...
November 8, 2013 at 1:22 pm
SQL Server Central currently has 103 videos on various SQL related subjects:
http://www.sqlservercentral.com/Articles/Video
add in the Stairways series on various SQl related paths, and you've got a great start right here on...
November 8, 2013 at 1:10 pm
ushacheb (11/8/2013)
Thank You for your reply Eddie . Am not using windows credentials ...access to this server is given with a different domain . Thank You
Pretty sure SQL server will...
November 8, 2013 at 7:29 am
it's not obvious, but if you look at the html source of some of your own email, the trick is referencing the content id(cid) of the attachment(s) that was included;...
November 7, 2013 at 6:36 am
well, you are only going to capture changes that occur in the future, after you've put some sort of auditing in place.
stuff that has already happened just plain is not...
November 1, 2013 at 7:26 am
well, i'd start with implicit users that come from windows groups:
select *
from master.sys.server_principals
where type_desc = 'WINDOWS_GROUP'
from there, for each name in the list, you can use a built...
October 31, 2013 at 10:08 am
hdillow (10/18/2013)
October 18, 2013 at 11:29 am
more details from you before we can help, i think.
you really need to analyze the trigger itself, and fix the issue;
for example, if there is a trigger on a...
October 2, 2013 at 6:37 am
Select from sys.triggers and sys.server_triggers. based on the brief description you gave plus the fact the.name contains "nested " you might have a trigger that blocks itself as well as...
September 30, 2013 at 4:35 am
here's the first actual code example i found:
http://www.codeproject.com/Articles/13391/Using-IFilter-in-C
along the lines of what Erland was suggesting, i think i'd simply add a column that will hold the extracted text from the...
September 18, 2013 at 8:55 pm
I suspect the core issue is that everyone logged in has sysadmin or dbo priviledges and instead of fixing that as gail implied with proper security, you are looking...
August 27, 2013 at 4:54 am
Viewing 15 posts - 2,956 through 2,970 (of 13,461 total)