Forum Replies Created

Viewing 15 posts - 5,146 through 5,160 (of 7,429 total)

  • RE: Mater's transaction log

    Take a look at DBCC LOG here http://www.sqlservercentral.com/columnists/achigrik/sqlserver7someusefulundocumenteddbcccommands.asp otherwise you will need a third party tool such as LogExplorer to look at the logs information. DO you have any inadvertant...

  • RE: Condition on multiplying columns

    No I meant ISNULL(column1,1) * ISNULL(column2,1)

    coalesce is better for multiple evaluations say if i want to output column2 if column1 is null and 0 if column2 is null. I only...

  • RE: Unable to start service

    The error "%1 is not a valid Windows NT application" should have abit more too it. Something similar to this: "DCOM error: %1 is not a valid Windows NT...

  • RE: tables!!!

    First to save headache you need to have a table or a field that relates Products to Newsletters.

    quote:


    If a customer purchases a...

  • RE: Where Account IN (......)

    You know I hadn't thought about that, but you might just be right. Without aliasing the tables and qualifying which one it is from it may be the same situation...

  • RE: push or pull?

    If you run the movement from the Standalone EM not on the SQL Server then the data crosses the machine EM is on. Pulled from Oracle and Pushed to SQL....

  • RE: DSO Object Variable or With Block Variable Not Set

    Strange things do happen, glad you found a solution.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Where Account IN (......)

    Sorry brain gas. Try this

    SELECT DISTINCT accountno FROM ContSupp oQ WHERE NOT EXISTS (SELECT * FROM ContSupp iQ WHERE rectype = 'E' AND iQ.accountno = oQ.accountno)

    Your other code should work...

  • RE: Where Account IN (......)

    Also why not just do

    select distinct accountno from contsupp where rectype != 'E'

    which is the same thing.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on...

  • RE: SQL Server Profiler help needed...

    That is the only way you will see the SQL login account. A user must be loging in under Windows Authentication for you to see the Windows account domain/name.

    "Don't roll...

  • RE: SQL Server Profiler help needed...

    Look at the functions USER, USER_NAME, and CURRENT_USER.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Change Control

    Not sure, you should have it scripted and he should make a script backup of anything it replaces. You should announce a downtime that occurrs after a full back preferred...

  • RE: dynamically defining table in a view definition

    Roberts right, views do not support variables in any way. You will have to use a Stored Procedure or create a script of code but views are out.

    "Don't roll your...

  • RE: DSO Object Variable or With Block Variable Not Set

    That then confrms that it is a COM object DLL that is the issue. The only problem is I am not familiar with InitDimSlices and find no documentation on it...

  • RE: Transactions in stored procedure

    Sorry currently I do not have .NET installed on a mchine as I am working on another project. I was wanting to look at what you have done to see...

Viewing 15 posts - 5,146 through 5,160 (of 7,429 total)