Forum Replies Created

Viewing 15 posts - 241 through 255 (of 295 total)

  • RE: format date within reporting services

    There is a simpler way, by default reporting services are installed using English (United States) as the default date format adjust the Report properties language to English (United Kingdom)

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

  • RE: Reporting services - Problem with print report

    Then in Table properties repeat header rows on each page should be checked.

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

  • RE: Reporting services - Problem with print report

    In Edit group try checking the Repeat group header box

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

  • RE: SQL 2005 Maintenance Plans

    After setting up database mail the last thing you need to do is right click on SQL Server Agent, select properties, under alert system enable the Mail profile you have...

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

  • RE: Offline database merging

    Is it possible that the data from each site uses identities? in which case the same identity might be used at each site, creating this problem. This could be rectified...

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

  • RE: Send Report to another Server

    Its not clear from your post exactly what you want.

    To run a report against another server you can just alter the data source.

    If you want to put the report...

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

  • RE: Index fill factor persistancy

    It depends on how you reindex, you have an option to rebuild using the default amount of free space, if you use maintenance plans. From MSDN

    Reorganize pages with the...

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

  • RE: SQL clusters over a WAN Link

    Having experienced Replication over a WAN, I would recommend mirroring over clustering as it should provide more resilience. The WAN I had to operate with constantly failed in bad weather....

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

  • RE: Read file system directory & files with T-SQL

    Not sure if this will help but try to check if the file exists then if

    it exists do the copy

    declare @Path varchar(128) ,

    @FileName varchar(128)

    select @Path = 'C:\' ,

    @FileName =...

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

  • RE: Default database settings

    Just adjust the Model database with the settings you want and all new databases will have the same settings as the Model one.

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

  • RE: Identity insertion and updation

    See SET IDENTITY_INSERT in BOL

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

  • RE: Get columns from query analyser HELP !

    One way run the query results to text, copy the results to Excel. The data will all be paced in the first column, highlight the column and use the Data...

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

  • RE: Compatibility level 90 vs 80 - is there a performance gain at level 90?

    The compatibility level of 80, was from SQL 2000, 90 is 2005. Features introduced with SQL Server 2005 probably wont work, I assume this based on trying customised reports and...

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

  • RE: SQL 2005 Install Error

    I've had install problems when the user account I was trying to run SQL Server under had too weak a password to be accepted under the security policy added in...

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

  • RE: sp or tsql

    If you want to disable a constraint say to bulk load data to it:

    ALTER TABLE tablename NOCHECK CONSTRAINT all

    Wouldn't recommend it as the constraint has been added presumably for a...

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

Viewing 15 posts - 241 through 255 (of 295 total)