Viewing 13 posts - 16 through 28 (of 28 total)
...and aonother idea after seeing jeffs code:
why not create a view with your select statement (check distinct and joins) and
WHERE (ET.iSiteId = @locSITEID)
AND (ETS.iShowId = @locSHOWID OR @locSHOWID IS...
November 11, 2008 at 3:19 am
to avoid select permissons to tables i always do the following with dyn sql code:
just generate the where clause in the ui (if the tables stay the same) and call...
November 11, 2008 at 3:09 am
as far as i know: yes 🙂
because the indices, PKs and FKs are stored in the sys.sysobjects table in every database and this table is not copied to the other...
November 11, 2008 at 2:42 am
and you will do the copy only once or many times?
if you create the table itselfs on the other database one time you can append new data from the large...
November 10, 2008 at 8:07 am
thanks. i will check out the articel a little later because it is rather long ;))
but is it right that i only can find out that an error occurs and...
November 10, 2008 at 8:03 am
thanks.
yes, i know this and i already tried it as i mentioned.
but 1) the desintation server is sql2000 and 2) it doesn'work 😉
it works with example from knowledge base...
November 10, 2008 at 6:28 am
you can once recreate the table with the indices and then copy the data all the time with appending records.
for what reason you want to copy the table, maybe...
November 10, 2008 at 6:03 am
hi,
i had the same problem. sql server trigger does not affect all rows when i updated more than one row a time.
what i do now is to run a...
November 10, 2008 at 5:19 am
hi patrick,
i totally agree with elisabeth.
in my opinion it is no good idea to give a user permission to tables because of security problems.
a proc creates an execution...
November 10, 2008 at 5:10 am
hi,
if you use import/export wizard, the indices are not copied because they are stored in sys table in sys.sysobjects and this table is not copied.
what you can do: script your...
November 10, 2008 at 4:01 am
hi,
there are many different scenarios to backup a database.
be sure that recovery model is set to full backup (if not, you can change this in the properties of the...
November 10, 2008 at 3:46 am
i have no idea about service broker... 😀
do you think i should try to run a job every minute to synchronise data with the sql2000 server?
September 16, 2008 at 8:47 am
thank you for your ideas.
i don't think that there are connectivity problems in the meaning of lost connectivity, because both sql servers are in the same network and it...
September 16, 2008 at 8:12 am
Viewing 13 posts - 16 through 28 (of 28 total)