Forum Replies Created

Viewing 15 posts - 571 through 585 (of 1,222 total)

  • RE: Allow user to see only views

    Enable cross database ownership chaining between the 2 databases. Create the views using the same owner/schema as the tables. You should then grant select permission on the views...

  • RE: SQL SERVER 2000 Insert SQL with Sub Query not working

    Did you actually read my reply - I included the correct code. How about trying that !

  • RE: How to detect if SSRS is installed with T-SQL

    If Reporting Services is installed using a SQL Server database on a different server, the extended stored procedures won't help you. They can't be used to read the...

  • RE: How to detect if SSRS is installed with T-SQL

    Perry Whittle (8/25/2010)


    That doesn't really work if the RS database is remote to the RS instance. It also makes assumptions regarding the naming context of the RS database.

    You can have...

  • RE: SQL SERVER 2000 Insert SQL with Sub Query not working

    You are using the wrong syntax

    try the following instead

    Insert into TblContTitleRef (ContactTitle)

    select distinct(ContactTitle) from TblCustomers where TblCustomers.ContactTitle <> Null;

  • RE: conversion error

    The datalength function returns an integer. The left function returns a character string. SQL Server is attempting an implicit data conversion of the result of the left function...

  • RE: Replication drop and adding articles

    You could drop the subscription and article on the article that is being used for the table with that you are updating, then apply the same updates and column changes...

  • RE: How many users are too many?

    It is not good practice to add a user for each and every person who needs access to your database. Wherever possible, use AD groups to deal with this....

  • RE: dealing coworkers

    Have you thought about what the underlying problem is ?

    e.g. is the person not interested in the job they are being asked to do ? is there...

  • RE: Best Practices on SQL Agent Job Frequency

    Personally, I would not implement this as a single task. Instead, I would do something like

    - create a file watcher process (VB.Net or C# can do this pretty easily)...

  • RE: SSRS Group Filters using IIF statement

    Are all of your numbers integers or are they decimal numbers ? I am thinking that you may be converting your numbers to integers which strips off the digits...

  • RE: SSIS help

    This can be done fairly easily. The steps are :

    - create query that returns the names of the cities (e.g. SELECT City, 'C:\' + City + '.txt' As CityFIleName...

  • RE: Add column to subscriber table

    Not sure whether there are any step-by-step guide out there. It is really a matter of using the article properties to set the name of the sproc you are...

  • RE: Disk alignment on a VMDK

    Yes, it definitely is best practice to align your physical disk partitions with how SQL operates. If you don't, you will end up with a system that is working...

  • RE: Add column to subscriber table

    yes, you certainly can do it.

    Replication is quite happy to use custom stored procedures to apply the insert/update/delete transactions to the subscriber.

    So, what you will need to do...

Viewing 15 posts - 571 through 585 (of 1,222 total)