Forum Replies Created

Viewing 15 posts - 76 through 90 (of 173 total)

  • RE: White space between matrix and other objects

    Try putting the objects into a Rectangle. The Rectangle object will keep items together where you put them. Usually. 😛

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Chart based on parameters selected?

    It would probably be best to let the query filter the data by passing the parameters to the query, as such:

    select * from tblA where YourDateField >= @DateMin and YourDateField...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Export From SqlServer to Escel

    Whenever a date is dropped into Excel from SQL it is in the full date format. You'll want to cast or convert the datetime column in your query. ...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Avoiding a Cursor

    Lol. The right "stuff". You made a punny. 😛

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: NEED HELP!!! UPDATING, DELETING, ETC.

    Excellent point and good teaching.

    Love the name, Mr. Pants.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: NEED HELP!!! UPDATING, DELETING, ETC.

    This is a great place to be. I spend whatever free time I have during the day reading through the forums. There are some mighty talented folks here...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Better option than using Stored procedures

    Also - stored procedures typically provide better maintainability and reusability

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS

    The sub-report should also work. Like most anything with sql there are several ways to get there. The trick is picking the most efficient route.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Cant save over SSIS project created by another user

    I'm kind of guessing as I've not worked much with SSIS yet... but in the olden days of DTS, the package ownership was assigned to whoever created it, and you...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS

    Unfortunately only one dataset per data region (table/matrix). You might be able to get the results you want by combining the datasets into one and using the grouping properties...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: 'System.OutOfMemoryException' SSRS 2005 Error

    Are you trying to export to excel by chance? you will get this error when you have > 64k rows. Try to export as csv.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SQL Server 2008 R2 Data Types

    Thanks! Very helpful. I made myself a Word version. It's attached if anyone wants it.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Today's Random Word!

    Revenant (2/16/2012)


    crookj (2/16/2012)


    WOTD - Gamification

    Xboxification (Kinectification?)

    Transmogrification

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Today's Random Word!

    J Livingston SQL (2/15/2012)


    Revenant (2/15/2012)


    SQLRNNR (2/15/2012)


    Daniel Bowlin (2/15/2012)


    Brandie Tarvin (2/15/2012)


    L' Eomot Inversé (2/14/2012)


    D.Oc (2/14/2012)


    fuzzification

    Piper

    ABBA

    Mama Mia!

    Dancing Queen

    only seventeen

    sweet sixteen

    freshman fifteen

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Need Query Help

    create table #Student (

    student_code char(1) not null,

    stud_act_id int null,

    fee decimal(19,4) null,

    discount_rate decimal(19,4) null

    )

    insert into #Student

    select 'A', 52165, 200, 60 union all

    select 'A', 54902, 300, 50...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]

Viewing 15 posts - 76 through 90 (of 173 total)