Viewing 15 posts - 46 through 60 (of 85 total)
Microsoft has a DLL help database which identifies all DLLs by version and applicability. Check it out at http://support.microsoft.com/default.aspx?scid=/servicedesks/fileversion/dllinfo.asp&fp=1
September 24, 2004 at 5:57 pm
SET NOCOUNT ON Worked! I figured it to be something simple but couldn't see the resulution even though I struggled with it. Thanks to Mike Vessey.
Steve King
August 6, 2004 at 10:16 am
I knew the posted code had a problem but I made multiple attempts to get it functional prior to posting the question. BOL was a source I accessed but frequently...
July 15, 2004 at 8:58 am
The 10000 limit may be an Access limit which I need to work around. There is no Top 10000 in the T-SQL statement shown below although I've put the TOP...
June 7, 2004 at 11:39 am
The obvious solution to the above problem is:
SET ROWCOUNT = 0
Except that the sp is loading data to a local table on the same server from a different database. The BOL...
June 4, 2004 at 5:33 pm
Thanks for the responses. I've implemented the following script based on some of the answers. This script outputs exactly what I need and I generally use it in...
April 9, 2004 at 8:34 am
Thanks. That recommended T-SQL script does a great job. I'll create another script based on it to display the text.
February 26, 2004 at 4:04 pm
I used the OPENDATASOURCE successfully in the query analyzer and saved a view. When I try to open the view the following error is presented. I have also received the...
January 7, 2004 at 10:13 am
A couple things I failed to mention earlier. First, I use an ADO object for the connection and stop the processing to use the debugger. When I check...
December 10, 2003 at 4:38 pm
This also applies to identifying lower case alpha character like l, o that are supposed to be numeric. Selected depending on case. Since SQL Server is not case...
November 26, 2003 at 12:47 pm
Thanks Mark,
I believe that's just what I could use. It's the obvious solution that I should have recognized; -- but didn't.
Steve
November 5, 2003 at 3:06 pm
Since this is importing data from an external source I need to perform multiple checks to determine whether the data should be merged into the tables. How would one...
October 29, 2003 at 3:18 pm
Here is an alternative function which uses the stored procedure name as a parameter and creates and ADO recordset. The recordset can then be assigned the the report...
October 16, 2003 at 10:18 am
After searching BOL for a solution I came up with this after correcting the example code and testing it in the query analyzer:
DECLARE @usr char(30)
SET @usr = user
SELECT 'The current...
October 16, 2003 at 10:02 am
I'll use profiler to see what is occuring. After reading my narrative I have decided it wasn't clear that I'm referring to separate tables. One where I can...
October 16, 2003 at 8:49 am
Viewing 15 posts - 46 through 60 (of 85 total)