Forum Replies Created

Viewing 12 posts - 106 through 117 (of 117 total)

  • RE: Combo boxes in SSRS

    Don't thank me yet, I think I'm stumped on this one as well.

    If you haven't already, try the following:

    Backup a copy of your rdl file before you do either...

  • RE: assigning variables during query processing

    write that query for 10 fields instead of two, then you'll understand my pain 😀

    seriously, I've already done it (i ended up writing code to create the code). But I...

  • RE: Combo boxes in SSRS

    can you provide both datasets (the one using the parameter, and the one used to populate the parameter's drop down list)

  • RE: SQL GUID Question

    If you mean it's MD5 encrypted, you can't unencrypt it. However I don't think yours is MD5 encrypted as it would required varbinary of at least 32 bytes. Also, there's...

  • RE: Combo boxes in SSRS

    Usually, that happens when your data set depends on another parameter, but is further down in the list. Move the problematic parameter all the way down to the bottom and...

  • RE: assigning variables during query processing

    I am seeing if it is possible to assign a variable, and utilize the same variable that I assigned all in one query. Here's some examples:

    declare @int_num int

    select @int_num =...

  • RE: assigning variables during query processing

    It can be done if it's only variables (I've included an example below). However I'm looking for the holy grail of actually assigning and using the the variables in the...

  • RE: XLS files created by SSIS are too big

    This happens if you reuse the same sheets/file over and over again. I'm not sure the exact reason why, but I know each Excel cell that has been modified (i.e....

  • RE: Transaction Log Retores with FG Backups

    So then, just confirm, you're saying SQL Server knows what FG each transaction in the transaction log belongs to. Because if it doesn't then the transactions that occured on FG2...

  • RE: Clustered Indexes

    GilaMonster (5/21/2008)


    The difference comes when you have multiple different types of queries. Let's take your example.

    An index on (Country, Account) is fully seekable for queries that filter on Country and...

  • RE: READ UNCOMMITTED by user?

    I understand how the command works, I'm asking is there a way to have it automatically set that way for certain users whenever they login.

  • RE: T-SQL overlap with VBScript

    I figured it out. I created a ADODB object in VB and created a connection to the database.

Viewing 12 posts - 106 through 117 (of 117 total)