Forum Replies Created

Viewing 15 posts - 436 through 450 (of 535 total)

  • RE: Graduated..working..now what?

    Steve Jones - Editor (2/23/2008)


    Certifications in the US are $125 per exam. There have been deals a few times for second chances or retakes at no cost, but I don't...

  • RE: Beginner article for Replication.

    best place to start is books online. there are some good high level overviews of how each replication type works and will help you make your decision on what...

  • RE: installing sql 2005

    you need to use the alter database statement (look in BOL). you specify the new filename for the data and log files and then restart the sql service.

    As SQL...

  • RE: Notified when sql server/agent is stopped

    Thanks all for your responses!! 3 very different solutions to the same problem 🙂 I think ill give the last solution a go monitoring from a remote box...

  • RE: Problem with creating a new database

    It still sounds like you dont have any privileges on the server except for grant login. When you go to security and look at the properties for your user/group...

  • RE: Problem with creating a new database

    It seems your issue is to do with the permissions of the user your using to create the DB. As vista is different than XP,2000 in that the local...

  • RE: SQL SERVER HELP

    Log shipping also requires full recovery mode, and im pretty sure mirroring does as well.

    Point in time restore requires full recovery model.

    Thats all i can think of right...

  • RE: Query design......

    select c.accountid,c.offername,min(c.startdate),max(c.enddate)

    from billingRecord c

    where c.bundlename like '%pack%' and

    c.accountid='9ABD'

    group by c.accountid,c.offername

    That should work, not checked it but i cant see why it wouldnt. You could also query the table twice...

  • RE: Log files

    basically its as simple as how much room you have. Log files do not stripe data like data files do, sql will fill the first log file, then move...

  • RE: Database exists but name is not legal ?

    FYI - I just tried creating a db called my-db and it worked ok. Not sure why it fails for you.

  • RE: Database exists but name is not legal ?

    does it work when you put square brackets around the name? The database name looks ok i think, the legnth is ok (i think the max is 128 chars)...

  • RE: Oracle permissions

    Hi there,

    Yes it is purely tables i am replicating.

  • RE: I don't want too see the system databases...

    im pretty sure that it shows all databases you have access too. I guess if you dont want to see them, create a new user with access to your...

  • RE: SCRIPTING:

    you can create a script jobs task in SSIS

  • RE: Job failed:The owner does not have server access.

    I had the same problem and it was cured via a restart of SQL Agent.

    Wait until you reboot the server again, its hit and miss whether the problem reoccurs :angry:

Viewing 15 posts - 436 through 450 (of 535 total)