Forum Replies Created

Viewing 15 posts - 1,231 through 1,245 (of 1,884 total)

  • RE: Question of the Day for 08 Nov 2005

    I am always cautious to delete anything from the top. You delete the first line, the second line becomes the first line etc.

    Addionally, why did the question say "remove

  • RE: sp4 installed now MDAC DLL not registered

    I have a laptop where I installed MDAC 2.8 last week. ADO folder contains files from Feb. 2003, C:\WINDOWS\dasetup.log (MDAC Setup Log File) says:

    Ini Section: General

     : ProductName = Microsoft Data...

  • RE: sp4 installed now MDAC DLL not registered

    Charles,

    Look under C:\Program Files\Common Files\System\ado

    Mine DLL for Connection object is:

    C:\Program Files\Common Files\System\ado\msado15.dll  

    This is for MDAC 2.82.1830.0. I would test connecting using VBscript. Not from ASP, but just vbs...

  • RE: Running Totals

    EXAMPLE TO MY PREVOUS POST:

    I added a field Total_qty as integer to Pubs.dbo.Sales and then run the following code:

    Declare @run_total int

    SELECT @run_total = 0

    UPDATE sales

    SET @run_total =total_qty=@run_total+qty

    From sales

    It updated...

  • RE: Running Totals

    There was a highly unusual solution in Chapter 12 "Transact-SQL Examples and Brainteasers" of Ron Soukup and Kalen Delaney book "Inside Microsoft SQL Server 7". There is an edition for...

  • RE: Memory question

    What is your Edition: Standard will use 2 GB max anyway. Enterprise can use more.

    Go to Management ->Current Activity window in Enterprise Manager and see in the Process Info what...

  • RE: sp4 installed now MDAC DLL not registered

    What are the error messages? Where: what statements, what objects?

     

  • RE: No More MCPs

    Hi,

    I am concerned a little bit with 2 things:

    1. Higher level knowlege requirement is replaced by several more dedicated areas like Steve says "all the other SS acronyms...".  Managers and...

  • RE: SQL Server Security Part 2

    Hi

    The article mentioned denying somethings like syscomments access to PUBLIC. Everyone is a member of Public, will SPs work after that?

    Otherwise the article is very good. Chris even did...

  • RE: Question of the Day for 03 Nov 2005

    Good Question!

    Found an excellent article on the subject by Ken Henderson

    Inside the SQL Server 2000 User Mode Scheduler

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsqldev/html/Sqldev_02252004.asp

    Ken says: "When a client connects to SQL...

  • RE: Named Pipes Protocol

    Hi,

    I assume you are asking about adding Named Pipes to the list of the protocols available for SQL Server when installing SQL Server or using Server Network Utility and not...

  • RE: sp_OAMethod example

    We just had the article here on 10/31/2005 on the topic with good examples:

    http://www.sqlservercentral.com/columnists/dasanka/callingcomfromtsql.asp

    Calling COM From T-SQL

    by Dinesh Asanka

    I added it to my virtual briefcase

  • RE: Problem installing SQL Server 7 Service Pack 4

    Graham,

    The problem may be not with the image but what was installed on the image after. The server I mentioned was built (installed) not from the Image SW. I will...

  • RE: Grouping

    Hi,

    I did it using a temp table that contained the original fields plus a field that had a range as a string named AgeGroup. Then I just grouped by AgeGroup...

  • RE: from txt to XLS

    Hi,

    I found a WSH (Windows Scripting Host) script that does import from csv file to Excel. You can modify the script if your text file is not csv (comma-separated). This...

Viewing 15 posts - 1,231 through 1,245 (of 1,884 total)