Viewing 12 posts - 361 through 372 (of 372 total)
I have heard that CLR integration is here to stay so that might be a something to consider.
If retrieving mail via POP3 is an option, create your own CLR...
January 11, 2008 at 8:15 pm
If you're using mixed authentication, setup a login to use SQL Server authentication and use that for the ODBC connection on the client.
Another option is to create a...
January 11, 2008 at 6:49 pm
[p]Read the following articles. They have good instructions and explanations on how to create your own stored procedures and functions using CLR Integration. [/p]CLR Integration
[/url]
January 8, 2008 at 8:43 pm
Would that be the REPLACE function you were thinking of?
WHERE O.Postcode_no_spaces = REPLACE(D.Postcode_8, ' ', '')
January 7, 2008 at 8:56 am
A user-defined function would be a solution for this.
Have the function take in a list of integers, put that list into a table variable, then join that table...
January 6, 2008 at 6:42 pm
Setting up a linked server using the OLE DB Provider for Microsoft Directory Services is straight forward but it has two limitations to consider. One, you can't update attributes...
January 4, 2008 at 10:00 am
Is there a requirement that it has to be a linked server?
If not, a VB or C# application that uses the System.DirectoryServices namespace and ADO.NET will get you data transfer...
January 3, 2008 at 6:11 pm
Have a look at this article by Erland Sommarskog that covers passing in lists to a stored procedure.
January 1, 2008 at 11:49 am
When the backups do complete are they doing so in the time you'd expect? If you copy a large file from another workstation to the Windows 2003 server...
December 31, 2007 at 2:49 pm
I’m not sure SSIS would be the most practical for that situation although I’m certain it could be done.
One way to handle the identity column is...
December 29, 2007 at 1:28 pm
When the DTS package is run manually it is running under your credentials. When the DTS Package is scheduled to run as a job the package is run under...
December 28, 2007 at 11:32 am
Is the record nos you're referring to a column in the table?
Inserting a row into a table does not necessarily mean it will be stored in the last physical row....
December 27, 2007 at 8:33 am
Viewing 12 posts - 361 through 372 (of 372 total)