Forum Replies Created

Viewing 15 posts - 316 through 330 (of 377 total)

  • RE: SQL Server does not exist or access denied

    What tool are you using to connect to SQL Server?  I think that information will help people find a solution.

     

    Russ

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: #Deleted Displaying in all fields in Access View of SQL Server Table

    What you need to do is create a pseudo index.  Create a new query in Access, go to the SQL View.  Then enter

    Create unique index PK_TableName on TableName (FieldName) with...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Calling package from within another package

    Are there any locks on the files?

    You can set a setting in the package properties to log to sql server (which puts information from the steps into a table in...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Execute DTS from MSAccess w/o setting reference

    Look at http://www.sqldts.com/default.aspx?225

    Russ

    PS:  As if you needed reassurance, I think that your plan will work very well.  I have done the same thing with other components.  It prevents users...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Results of an XML stored proc to a variable

    There is a little note in BOL "Guidelines for Using the FOR XML Clause:"  Generally, FOR XML cannot be used for any selections that do not produce direct output to...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: MCDBA vs non - MCDBA

    To me the major advantage to certification is what you learn in the process.  I am a database developer, who has acted as dba in a couple single server shops. ...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Im looking for a sample Data Transformation Script

    I cut my teeth on DTS by using the import wizard.  I do an import, choose the objects to import, then rather than running the import right away, I save...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: dts workflow properties -- sort order

    I'm not sure what you are doing.  Let me suggest what I think you are saying and  a solution.

    You have 20 steps in your package.  I am going to guess...

    Russel Loski, MCSE Business Intelligence, Data Platform

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

    Is the ODBC a system (machine) DSN or a User DSN?  It needs to be a System DSN to work.

    Russ

    Russel Loski, MCSE Business Intelligence, Data Platform

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

    A couple things to look for:  What version is the SQL Server ODBC driver on the Web box?

    Run profiler and connect to the server that your web page is connecting...

    Russel Loski, MCSE Business Intelligence, Data Platform

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

    There is no way to do this using T-SQL.

    You can do it using visual basic.  This http://www.sqldts.com/?208 explains how to run a dts package.  You can run a similar program...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: 3 different file to the same DB !

    What you need is to apply a workflow to this process.  Select the first task to complete then the second (if they are transform tasks, select the target connection of...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Query Problem selecting records

    What are the schemas for the three tables?  What are the unique/primary constraints for these tables?

    Russel Loski, MCSD

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Alternative to cursor

    I usually use sub-queries:

    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, clientcode,...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Who know for reporting server?

    Do you have IIS installed?  And dot net framework 1.1?

    Russ

    Russel Loski, MCSE Business Intelligence, Data Platform

Viewing 15 posts - 316 through 330 (of 377 total)