Viewing 15 posts - 5,521 through 5,535 (of 13,460 total)
a couple of basic examples:
--connect via trusted connection using your domain credentials
SELECT *
FROM OPENROWSET('SQLOLEDB','Server=yourservernamehere;Trusted_Connection=Yes;Database=Master',
...
Lowell
May 7, 2012 at 7:59 am
if adding a CLR is an option, take a look at this project i slapped together over at codeplex, and this thread that discusses other options, as well as tightening...
Lowell
May 6, 2012 at 10:25 pm
it happens a lot:
there is a MicroSoft knowledge base article on the specific registry entries and files that will help tremendously:
How to manually uninstall an instance of SQL Server 2005
Lowell
May 6, 2012 at 7:44 am
sp_senddb_mail Is a service broker; it's already asyncronous
more likely is the person calling the procedure doesn't have permissions to send dbmail, which requires being a user in the DatabasemailUserRole in...
Lowell
May 5, 2012 at 7:27 am
An excellent point on security Jeff, I'm still mulling it over.
I was thinking that a CLR added a layer of flexibility in there. You don't have to give the end...
Lowell
May 4, 2012 at 3:20 pm
bopritchard (5/4/2012)
but that's just it...there are no errors...and i'm using sa impersonation for the linked server
i think Craig is right...errors are being supressed in the .net app, and stesting...
Lowell
May 4, 2012 at 2:28 pm
well i took opc.three's advice and slapped together a project on CodePlex.
There is no doubt in my mind this will help the SQL Community.
If any of you guys have...
Lowell
May 4, 2012 at 1:21 pm
is adding CLR assemblies an option?
I made a suite of CLR export functions as a proof of concept, and i can export to any text data type or HTMl as...
Lowell
May 3, 2012 at 10:58 am
how are you looking at the results?
you know that SSMS, in gridview mode, converts CrLf to spaces so that it can present all the data, right? even thought the...
Lowell
May 3, 2012 at 8:58 am
hmsanghavi (5/3/2012)
cmd.CommandText = "UPDATE DimRequestMasterTestHS SET [RunningBoard] = ?,[DutyBoard] =? ,[DriverId] =? ,[PublicServiceCode] = ?,[ServiceCode] = ?,[DepotCode] = ?,[Direction] = ?,[EOJMethod] = ?, JourneyNo=? WHERE [RequestID]=?...
Lowell
May 3, 2012 at 8:26 am
doesn't the slow plan say it is copying 3.8 million rows @ 115 gig via a table spooll from the linked server?
Lowell
May 2, 2012 at 12:52 pm
as mentioned, without specifics, wer can only guess;
a different process smay have different ANSI settings, like ANSI NULLS, etc, which can affect the query(whatever it does).
it could be the...
Lowell
May 2, 2012 at 12:49 pm
er.rajesh89 (5/2/2012)
hi if u can send code for import using " bcp in "By Rajesh
Booksonline and google are great resources, but if you need an example, here's both an out...
Lowell
May 2, 2012 at 9:46 am
Eliyahu (5/2/2012)
In my case godaddy just happened to be the destination. There will be hundreds of other destinations, we can neither control nor make any assumptions about them.
you mean godaddy...
Lowell
May 2, 2012 at 7:58 am
when i googled "godaddy SMTP host "Too many messages for this session". ", i found a couple of posts that might help;
one of them says godaddy has a limit...
Lowell
May 2, 2012 at 5:43 am
Viewing 15 posts - 5,521 through 5,535 (of 13,460 total)