Forum Replies Created

Viewing 15 posts - 4,726 through 4,740 (of 5,103 total)

  • RE: View DTS package Permissions and Linked Server Access

    mssql_rules ,

    1. He could have either that or dtsrun on his client. Still the package, when runned from the client, will have the...

  • RE: Sr. SQL Server Architect

    Jeff,

    I am available:

    Can you send me an email with your Location in NJ

    Thanks

    Noel

  • RE: Web Development - Using an MS Access Database with Linked SQL Tables

    If you have that error then you ODBC DSN IS WRONG. Use odbc aministrator to make sure that it is connected right!

     

  • RE: How to modify all DTS Packages by using T-SQL?

    Well, There is a bridge if you are willing to use

    sp_OA stored procedures you can do it in TSQL [Instantiating the DTS.Package (or DTS.Package2) Object].

    But I really think that...

  • RE: How Can I auto sum a Column for every record I select?

    the problem with an Update like that is that it will LOCK THE WHOLE TABLE !!

    It will probably more efficient to use a cursor with ordered results and in that way...

  • RE: Need to modify a Cross Tab Report

    That's a job for the FRONT END

    but if you insist:

    If Exists (select * from

    tblRC_StandardsTestScores03_04 TS

    Inner Join Student_Data_Main SD On TS.Permnum = SD.Permnum

    Where TS.Permnum = 2000025822

    and TS.TestShortname = 'SFM2'

    and Qnum...

  • RE: date joins filling in the blanks

    chisholmd ,

    First If you have a table with  Numbers

    1. From 0 to 23 you will be able to generate the 24h in...

  • RE: date joins filling in the blanks

    I don't think that to have an extra table is bad but you could do something like:

    CREATE TABLE TTT (dte datetime, val int)

    GO

    INSERT INTO TTT(dte, val) VALUES ('2/18/2004 10:00:00', 34567)...

  • RE: Max number of columns ADO recordset can handle.

    The Count Property of the Fileds is defined as Long which is A LOT.

    but if you are retrieving info from SQL Server these are the limitations imposed by Version

  • RE: Applying field descriptions

    You do it AFTER the Create Table statement

    Like

     
    CREATE   table T1 (id int , name char (20))
     
    EXEC   sp_addextendedproperty 'MS_Description', 'Employee ID', 'user', dbo, 'table', 'T1', 'column', id
    EXEC...
  • RE: Save Stored Proc Results

    if you follow the udf path you may as well don't create the table at all

    just use:

    SELECT * FROM dbo.MyUDF(@Param)

  • RE: View DTS package Permissions and Linked Server Access

    On the First Case:

    1. Save the Package to a structured File

    2. give permissions to  the share.

    3. Remove all permisissions from the server

     

    On your Second.

    I learned the Hard way that lesson you should grant...

  • RE: Web Development - Using an MS Access Database with Linked SQL Tables

    Try these steps:

    1. When you are creating a linked table from an ODBC DATA SOURCE MAKE SURE you cheked the SAVE PASSWORD box  

    2. then Proceed...

  • RE: How to... Change a Filegroup for an Existing Table

    ... and you are if you recreate the clustered index as Allen Cui mentioned above!

  • RE: Alternative to cursor

    Change This on Russel's query:

    select t10.Partner, t10.staffname, t10.clientcode, t10.clientname, t10.DebtTotal

    from

      (SELECT TOP 10 Partner, staffname,clientcode, clientname,sum(DebtAmount) AS  DebtTotal

      FROM tbl_Billsfortheyear INNER JOIN tblStaff ON staffindex = Partner

      group by Partner,...

  • Viewing 15 posts - 4,726 through 4,740 (of 5,103 total)