Forum Replies Created

Viewing 15 posts - 136 through 150 (of 530 total)

  • RE: .Net how much Memory is needed

    Running .NET IDE is quite memory intensive. We are running it on our 'old' 256MB laptops and it runs fine, but not really fast.

    If you have the chance to upgrade...

  • RE: Quering Table Attributes

    
    
    sp_help <table name>

    Returns more information like indexes, foreign keys, ... in a nice format in QA.

  • RE: Examples Using "WHERE CURRENT OF"

    Declare your cursor as follows

    
    
    USE PUBS
    DECLARE @lName varchar(40)

    DECLARE crsMyCursor CURSOR FOR
    SELECT au_lname FROM AUTHORS

    OPEN crsMyCursor

    FETCH NEXT FROM crsMyCursor INTO @lName

    UPDATE Authors SET au_lname...
  • RE: Newbie: continuing backup failures

    Did you check permissions of the user running the Maintenance Plan job? This is by default the user that created the maintenance plan, and maybe that user does not have...

  • RE: Need your urgent help

    There is no easy way to do this in a single operation. What possibilities exist?

    1. Use a trigger on the table. If you have cascaded triggers, you are sure to...

  • RE: Named Parameters in SQL client (ADO.NET)

    Agree with Andy. It is better to rely on a hardcoded parameterNAME than on an ordinal.

    After all, you would not write an order by clause using ordinals, would you?

    After...

  • RE: Level Depth

    There is an MDX expression 'Level' as in <Member>.Level.

    This gives you the level of the member of the Dimension.

  • RE: Insert SQL statement into a table

    My point wasn't as much which query the app passes in, but the method it uses to pass it in. Does it call a stored procedure using the ADOCommand object...

  • RE: Insert SQL statement into a table

    Can you post a sample of what the App sends to the database? That might clear things up for us...

  • RE: Please Help, has no one done this before???

    Can you give the format of the file? Maybe upload a small sample, and I will try to do some testing...

  • RE: Please Help, has no one done this before???

    Oops. Apparently there is no easy way to read a binary file using VBScripting. Maybe using JScript it gets easier?

    An alternative solution could be to write your own object to...

  • RE: Insert SQL statement into a table

    Can you please explain more clearly what you want to achieve?

    Do you want to have a syntax checking done before inserting the SQL String?

    Give some examples. My solution I posted...

  • RE: Insert SQL statement into a table

    Obviously, that example won't work. What I was describing is a way to do this using any front end.

    To escape a single quote, you should put two single quotes.

    Your example...

  • RE: Please Help, has no one done this before???

    Should be possible.

    You should be able to create the logic for reading the binary file from an ActiveX task.

    Insert the record ids (primary keys) inside a staging table and 'synchronise'...

  • RE: Using select distinct

    It is quite logical that it does not work. How should SQLServer know which row you want to display for each unique hometel?

    You could try the following...

     

Viewing 15 posts - 136 through 150 (of 530 total)