Forum Replies Created

Viewing 15 posts - 1,981 through 1,995 (of 2,486 total)

  • RE: Does Access effect SQL Server Perfomance

    As long as only one person is running reports from a database on SQL Server that the same person is using (effectively turning SQL Server into a single-user database) then...

  • RE: DTS package failure

    How are dates formatted in db2? In SQL they are yyyy-mm-dd hh:mm:ss.nnn

    If DB2 is different, you'll need to use CONVERT to put the in the right format.

    Check "CAST and CONVERT"...

  • RE: xp_cmdshell to launch MS Access database

    Can you create a linked server that connects to your Access db? If so, you can insert/update your access tables via the linked server.

    If not, then try using OPENDATASOURCE and/or...

  • RE: Drop temp tables

    Also, one thing to point out is that you can cause blocking issues in tempdb by doing SELECT INTO ... #Tmp

    Better to explicitly create and drop the tables.

    Hope this helps

    Phill...

  • RE: Dead Lock

    Check "Avoiding Deadlocks" and "Understanding and Avoiding Blocking" in Books online.

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click interface

  • RE: DTS & SP Raise Errors

    Do you have a return statement in you stored procedure? You can use the return statement to return a failure condition.

    If you don't want to fail the package, use an...

  • RE: Transform Data Task Issue: Writing to Excel

    What are the differences in the setup of the SQLAgent between Dev and Test?

    Executing the package manually uses the credentials you used to access the server. It will also run...

  • RE: xp_cmdshell to launch MS Access database

    Have you checked Task Manager after running the command? You'll probably find MSACCESS.EXE in the list of processes. The most likely reason it's not a visible application is because the...

  • RE: Acronyms

    Here's one I first ran across while spending some of my youth in the Army Reserves. The regular army guys always referred to us as WOFTAM's.

    Waste Of F*****g Time And...

  • RE: Converting Meta Data Services Packages to Local

    The Meta Data packages are still stored in MSDB, but they are held in a whole series of tables that are prefixed with RTbl. These are all the repository tables.

    Hope...

  • RE: Development Tools

    At the moment I think it's a hard to go past mssqlXpress and Query Analyzer for development.

    mssqlXpress has the advantage of Visual Sourcesafe integration. When there's something that can't be...

  • RE: T-SQL book recommendation

    Those are good suggestions.

    Also, take a look at the following

    Both of the T-SQL books by Joe Celko.

    Transact-SQL Programming

    by Lee Gould, Andrew Zanevsky, Kevin Kline

    SQL Server 2000 Programming by...

  • RE: MSDB

    I've successfully done just that on a couple of occasions, haven't had any problems.

    I suppose MS is just protecting themselves by not advsing users to directly update system tables.

    Hope this...

  • RE: Converting Meta Data Services Packages to Local

    Just open the package in design. Then using 'Save As...' from the Package menu, save it to 'SQL Server' instead of 'Meta Data Services'.

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the...

  • RE: Transformation Report ?

    DTS pacakges are stored as BLOBs in msdb..sysdtspackages. So no T-SQL query going to be able to extract the info you need.

    cocr's suggestion is probably the closest you'll get...

Viewing 15 posts - 1,981 through 1,995 (of 2,486 total)