Viewing 15 posts - 571 through 585 (of 1,222 total)
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...
September 1, 2010 at 10:05 pm
Did you actually read my reply - I included the correct code. How about trying that !
August 26, 2010 at 4:42 am
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...
August 26, 2010 at 4:37 am
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...
August 25, 2010 at 10:06 pm
You are using the wrong syntax
try the following instead
Insert into TblContTitleRef (ContactTitle)
select distinct(ContactTitle) from TblCustomers where TblCustomers.ContactTitle <> Null;
August 24, 2010 at 9:53 pm
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...
August 24, 2010 at 9:51 pm
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...
August 16, 2010 at 10:01 pm
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....
August 13, 2010 at 1:28 am
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...
August 13, 2010 at 1:26 am
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)...
August 13, 2010 at 1:15 am
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...
August 13, 2010 at 1:05 am
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...
August 3, 2010 at 10:54 pm
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...
July 24, 2010 at 5:47 pm
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...
July 22, 2010 at 10:31 pm
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...
July 21, 2010 at 4:39 am
Viewing 15 posts - 571 through 585 (of 1,222 total)