Viewing 15 posts - 31 through 45 (of 249 total)
Unfortunately, much of the user-defined objects within the databases are not sharable between databases. That is true even if the definitions are identical.
You can give this article a try...
November 12, 2012 at 3:05 pm
It can be done either way. If it is easier to maintain all your applications' data in a single database then that is your business case.
However, setting up separate...
November 6, 2012 at 1:37 pm
How about creating a view with all columns in the table except those you want to hide. Then give read permission ONLY to those views.
November 1, 2012 at 3:04 pm
Probably empty space left by deletions. Try shrinking the database and see if the unused space goes away. It should.
November 1, 2012 at 3:01 pm
Unless the applications need to share a large chunk of common data, which it does not sound like it is the case here, I would always create separate databases for...
November 1, 2012 at 2:52 pm
This will most likely error out. If I remember right, you can only have one action per MATCHED. I think the INSERT statement will be interpretted as the...
October 31, 2012 at 4:17 pm
Just a random thought: have you tried
and a.APPLICATION_DT >= '2012-08-01 00:00:00.00'?
Or
and a.APPLICATION_DT >= '2012-08-01 T00:00:00.00'?
The space is typically required as a delimiter.
October 30, 2012 at 12:39 pm
Depending on your goals for the replication, there are a couple of products you can look at.
If you are looking at almost instance recovery from disaster then Red Gate (red-gate.com)...
October 16, 2012 at 1:06 pm
There should be a link at the bottom of each screen that enables you to provide feedback on the content.
October 11, 2012 at 3:37 pm
If there is already a clustered index on the table, then I would make sure that the PK is not clustered. This will help preserve your current performance.
As for...
October 9, 2012 at 2:01 pm
SUBSTRING(FiscalYear, 5, 3)
October 3, 2012 at 3:23 pm
You do not have to turn FILESTREAM on in order to store BLOB files in SQL 2008/R2 unless the files you want to store are larger than 2GB.
When I researched...
October 3, 2012 at 2:48 pm
Just so I understand...
You are being asked to provide a comparison between the mirrored DB and the offline DB during a disaster, before the mirrored DB goes online?
If this is...
October 3, 2012 at 12:43 pm
Very nice! That last one solved my problem.
Thanks a ton!
Jerry
August 10, 2012 at 10:54 am
Does the ar_cusomter table have an XML data column? I found that moving data with an XML column between servers is not allowed when using linked servers. I...
August 10, 2012 at 9:37 am
Viewing 15 posts - 31 through 45 (of 249 total)