Forum Replies Created

Viewing 15 posts - 361 through 375 (of 377 total)

  • RE: Slow running applications and selects

    Adhoc queries are evil!

    I suspect that you have locking issues. 

    How are the adhoc queries being run?  Are they being run from Access? ...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: How to create an uneditable database ?

    As far I can tell, there is no way to completely prevent sysadmins and dbowners from changing records.  There are ways to get around this.

    Some ideas: 

    1. Gather all information...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Access & Store Procedures

    I assume that it is the first pass through query that is slowest, not just this one.

    What happens is that Access has to connect to the server when you first...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: bulk insert thru DTS

    As far as I can tell there is no task that you can use.

    You might set up an ActiveX task and use the COM object that Microsoft released for BulkXML.

    Russel...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: CreateObject("WScript.Shell") Error in DTS

    I assume that you are a local administrator on your machine.  Thus when you run the dts package you have permission to do almost anything on your machine.

    When you run...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Running packages held in structured storage files

    I have done both.  They seem to work quite nicely either way.

    In a structured storage file, there are multiple versions of a package in a single storage file.  And there...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Reporting Services - typical Microsoft

    To reply to your post, you can work with the XML.

    You raise a very interesting philosophical point.  I assume (tongue in cheek) that every time you code, you insist that...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Dynamic SQL query

    For some reason this syntax won't work.  Someday, I will find out why.

    Why don't you just use a subquery or an inner join:

    select * from tligfact

    where ligfaccalculcode in (select distinct exportlineitem...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Character String Truncation

    One more question:  what tool are you using for importing from Access into SQL Server?

    Russel Loski, MCSD

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Bizarre, same code, different out put

    I think that SQL Server is getting confused as to what rf.team means.  The query is acting like it is treating that whole case statement as rf.team since that is...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Missing Icons in DTS Designer

    First, my understanding of the redist.txt files is that they relate to elements needed to run dts packages, not for designer.  The designer is licensed for the Enterprise Manager.  Thus...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: XML Parsing

    I have created a sample query that includes an XML document.  Note that for all of the new records you must specify all values for Not Null columns.

    Russ

    CREATE TABLE [OrderDetails]...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: upgrading from Access to TSQL

    For SHDate:

    Convert (varchar(10), sh_date,101) as shdate

    Russel Loski

    Russel Loski

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: VB ActiveX Job Step - Not Executing

    I suspect that the user account that SQLAgent is running under does not have permission to access the files.

    Alternatively, does the filesystemobject access a network drive? You can't use...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Setting a DateTime Field to NULL

    I did a simple test: run query

    select convert (datetime, '')

    The results were 1900-01-01 00:00:00.000

    I think that it is casting '' to datetime and converting it to 1900-01-01.

    The easiest fix...

    Russel Loski, MCSE Business Intelligence, Data Platform

Viewing 15 posts - 361 through 375 (of 377 total)