Viewing 15 posts - 2,956 through 2,970 (of 13,469 total)
dwain.c (11/12/2013)
Exotic JOIN? I think BOL must have forgotten to mention that one. 😛
yeah the whole "exotic' naming convention for non traditional joins started back in 2007 with...
November 12, 2013 at 6:29 pm
Jeff Moden (11/12/2013)
Lowell (11/12/2013)
here's my linked server example for a 64 bit folder full of text files that may help:
Very cool. I've not actually used the ACE drivers, yet...
November 12, 2013 at 10:05 am
here's my linked server example for a 64 bit folder full of text files that may help:
a couple of prerequisites:
install the AccessDatabaseEngine_x64.exe from microsoft:
http://www.microsoft.com/en-us/download/details.aspx?id=13255
make sure you open an...
November 12, 2013 at 8:42 am
the trick here is what some people call an "exotic" join, where it's not joining on discrete values, but rather on the criteria (between dates) you are looking for.
Something like...
November 12, 2013 at 8:10 am
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
Viewing 15 posts - 2,956 through 2,970 (of 13,469 total)