Forum Replies Created

Viewing 11 posts - 31 through 41 (of 41 total)

  • RE: 70-432 exam dump

    Sorry I may not have been clear in my last post.

    Use the VPC image to practice disaster recovery scenarios.

    Set up some replication scenarios.

    Setup some linked severs

    Practice What-ifs

    Cheers

  • RE: 70-432 exam dump

    1. Install SQL Server on a Virtual PC.

    2. Backup you VPC image.

    3. Learn SQL Server

    4. Deliberately blow up you VPC image and then try to recover it.

    If you can't recover,...

  • RE: Updating a table starting with the first empty column in a specific row

    Create Table #Temp

    (

    NewID int identity(1,1),

    <various fields from other table>

    );

    Insert into #Temp

    Select * from <other table>

    delete from <other table>;

    insert into <other table>

    select coalesce(RecordID, newID) As ID, <other fields>

    from #Temp;

    drop...

  • RE: How to record impressions in search results

    Try aggregating the result set

    Select field1, field2, count(field)

    from

    table

    where some condition = whatever

    group by field1, field2

  • RE: Are the posted questions getting worse?

    If God had meant us to play soccer, he wouldn't have given us arms. 😛

  • RE: End-user Query Builder Tool?

    SQLExcel is quite good. It's free.

    It allows you to create queries similar to MS Access query builder, and you can save the queries in a network location for other people...

  • RE: Data disappearing from tables mysteriously

    Check the following -

    triggers

    jobs that run stored procedures

    VB code that "cleans up" data

    Transactions that rollback.

    Isolate when the data is changed.

    To do this:

    Run a trace while...

  • RE: Knowledge Transfer

    Alcohol - its not just for helping ugly people get laid.

    Buy him a beer and ask him a few questions regarding major issues. Don't exactly suck up to the guy,...

  • RE: A Simple way of Automating Scripts

    Nice work!!!

    I have been using this tool, xSQL Script Executor. It's freeware - so the price is right.

    It allows you to batch your scripts together in projects and target multiple...

  • RE: Counts of similar databases as sql job

    Hi,

    You can create a before and after dump of the objects in the dat base and compare what has changed.

    See below.

    or SQLDiff does the job pretty well but I am...

  • RE: SSRS report from AD

    Hi,

    You can write code in C# or VB.Net to view retrieve data from AD via a web service.

    Connect to the web service as the report datasource

    Jamie

Viewing 11 posts - 31 through 41 (of 41 total)