Forum Replies Created

Viewing 15 posts - 16 through 30 (of 52 total)

  • RE: Express -- Not accepting remote connection

    Situation resolved. Completely unrelated to SQL configuration. :hehe:

    Installer will be waterboarded.

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Merge Replication: What's "Reinitialize" and "Validate Subscription"

    I have seen it trying to add rows to tables before it added the table 😉

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Merge Replication: What's "Reinitialize" and "Validate Subscription"

    Interesting. Thanks.

    I avoid the system tables

    So don't add the foreign keys for new tables until after...

    Still investigating. Yes, the clients revolt when we have to take them down for...

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Adding a Table - Merge Replication

    For the last 9 months? If I haven't got it resolved by now, it's far to late to worry about it.

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Merge Replication : Stored procedure as an article?

    You can make a snapshot of just the stored procedures?

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Error 5, Access denied?

    I'm thinking it must be the file access permits. Unfortunately, the user is disappearing with his laptop.

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Adding a second subscriber to a merge rep

    Database keeps running. Snapshot agent doesn't. Always stays in active jobs and never finishes. Of course, now they've noticed that the data from the existing subscriber isn't merging.

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Get Performance Tips Directly From SQL Server

    Um, I don't know. Can't seem to get the same result from the stored procedure again.

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Get Performance Tips Directly From SQL Server

    Curious...

    It's telling me it's missing an index: Table InventoryGrouping, Column ClassValuePK, but I already have an index:

    CREATE NONCLUSTERED INDEX [IXClassValuePK] ON [dbo].[InventoryGrouping]

    (

    [ClassValuePK] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE ...

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: A Simple Approach to SQL Server 2005 Encryption

    Not sure you've gained anything.

    select ... convert(varchar(16), DecryptByKeyAutoCert(cert_id('MyCert'),

    But now, isn't the key actually "MyCert"? If somebody were clandestinely querying your database, all they'd need to figure out is...

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Many to Many Check

    Well, Lynn, you posted a nice solution that gave a result. I said it was nice. (Scroll up) Seeing it run, I was able to settle on a variation. My...

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Many to Many Check

    You have to guess

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Many to Many Check

    How's this?

    select customer.CustomerPK, Location.LocationPK, CustomerLocation.CustomerLocationPK

    FROM Customer

    CROSS JOIN Location

    left outer join CustomerLocation on CustomerLocation.CustomerPK = Customer.CustomerPK AND CustomerLocation.LocationPK = Location.LocationPK

    WHERE CustomerLocation.CustomerLocationPK IS NULL

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Many to Many Check

    Nice, Lynn!

    select

    cust.CustomerPK,

    loc.LocationPK

    from dbo.Customer cust cross join dbo.Location loc

    except

    select

    custloc.CustomerPK,

    ...

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

  • RE: Many to Many Check

    I never think of union.

    This isn't quite it either. I'm looking at 18 customers and 2 locations, so there should be 18*2 customerlocations. Your query finds me 2 rows, but...

    [font="Arial"]Halfbubble ------------
    You just can't do this stuff unless you're at least half a bubble off center.[/font]

Viewing 15 posts - 16 through 30 (of 52 total)