Viewing 15 posts - 1,831 through 1,845 (of 2,268 total)
Right click on the publications --> Properties --> Articles
Un-Check the article that you want to stop replicating.
November 7, 2008 at 8:00 am
SELECT * FROM [5K5_PatLevelData_September_2008-9_MST_20089_029] WHERE
[PatID(HospitalNumber)] in (
SELECT [PatID(HospitalNumber)]
FROM [5K5_PatLevelData_September_2008-9_MST_20089_029]
GROUP BY
[PatID(HospitalNumber)],
...
November 7, 2008 at 7:13 am
As stated above, the best approach would be to do this manually using ssis, I am not sure i would fully trust an automated tool to do...
November 7, 2008 at 6:53 am
Can you post some sample data and your table structure?
November 7, 2008 at 6:42 am
krayknot (11/6/2008)
Vivien Xing (11/6/2008)
A.Table...
November 7, 2008 at 5:06 am
database mirroring is database specific so when you mirror your production database to your test server, this will create a mirror database that is in-recovery mode.
So you...
November 6, 2008 at 11:02 am
Is there any reason why you cannot deny these users delete rights? it would save you a lot of hassle.
November 6, 2008 at 10:34 am
here is my attempt without using PIVOT, there may be a better way to do this but this seems to work. It will fail if there are...
November 6, 2008 at 9:25 am
it doesnt work because you are putting three quotes around your variable (''') you do not need to do this, surround it in single quotes (') and...
November 5, 2008 at 7:03 am
It looks like you are missing out a step in your query, you are inserting a value into a variable then selecting from a table. Where is the...
November 5, 2008 at 6:53 am
It depends on your setting for ANSI_NULLS
is you set this to off
SET ANSI_NULLS off
then your code will return 'NULL is equal to 3041'
check out this microsoft link for a full...
November 5, 2008 at 6:27 am
crazyfig (11/5/2008)
Thanks for the feedback, but thats part of the issue Im having in a way. I would have to go through each table and field name, to link them....
November 5, 2008 at 3:45 am
If you already have a primary key then what is the need for the Identity column?
if is for display purposes only , you could use ROW_NUMBER() and generate a sequence...
November 4, 2008 at 5:29 am
A loop is not the best way to do this, the best way would be to use a join between the two tables based upon a primary key...
November 4, 2008 at 3:39 am
try this code to get the current user
SELECT SUSER_SNAME()
November 4, 2008 at 3:29 am
Viewing 15 posts - 1,831 through 1,845 (of 2,268 total)