Forum Replies Created

Viewing 15 posts - 46 through 60 (of 295 total)

  • RE: report generation

    The obvious reply is to look at reporting services, in which you should be able to produce the report you want.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Best way to transpose multiple rows onto 1 row?

    Duplicate deleted

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Best way to transpose multiple rows onto 1 row?

    You could play around with this to make it more readable but I think it does display the data in the format you want.

    SELECT DISTINCT

    A.[StaffNo],

    A.[Name],

    STUFF(( SELECT ' | '...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Install of SP1 for SQL 2008 hangs at initial rules check

    Have you tried running it from the command prompt, google has a few links on how to do this.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Run an SSIS Package Under a Different Account

    Food for thought, I can see many uses for this.

    Thanks

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Restore Permissions after database refresh

    If you have SQL users rather than windows authenticated users see:

    http://support.microsoft.com/kb/246133 this will enable you to script out all users, permissions and passwords and apply them to the new...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Database Documentation: Joining up the Dots

    In an ideal world (still looking for it) you would design all your databases from a model, using a good tool, my preference Power Designer (Sybase). Then apply all changes...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Table Design for New DB

    Who will use - Security and Permissions

    How much data - Size of database, Size of hardware required.

    Retention of data - How long will data be kept , how much growth,...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Linked server in sqlserver 2008

    You only have to give permissions on the table that you wish to link to. See BOL for

    sp_addlinkedserver and sp_addlinkedsrvlogin

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Transaction log for master isn't happening

    Probably because the Master database is set to simple mode, so there are no logs to backup. Check the properties.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: HOW TO RETRIEVE THE STATEMENT USED TO CREATE THE TABLE

    Right click on the table in management studio select script table as then create to and lastly select option of where to write the script out.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Date and Time weird problem

    Have you checked that its not related to a collation issue on the database, in that its set to a different collation to that expected. Can happen if SQL Server...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Log growing Unpredictably

    Are there any uncommitted transactions? Check the DBCC OPENTRAN topic in SQL Server Books Online.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Rowcount

    Tested on 3 versions and got...

    SQL 2000 (0,1)

    SQL 2005 (1,1)

    SQL 2008 (1,1)

    I think the question should be re-worded and answers reset if the posts on this discussion are anything to...

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

  • RE: Missing 31 stored procedures after migrating to sql 2005

    Check the permissions they might be there but not visible to the user you are logged in as.

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

Viewing 15 posts - 46 through 60 (of 295 total)