Viewing 15 posts - 766 through 780 (of 961 total)
Shouldn't this work for you , It seems pretty straight forward
update TGT
set TGT.address=SRC.address
from ADDRESSES TGT
join AddressUpdates SRC
on TGT.id=SRC.id
where SRC.address like 'PO%'
update TGT
set TGT.address=SRC.address
from ADDRESSES TGT
join AddressUpdates SRC
on TGT.id=SRC.id
where SRC.address...
June 29, 2011 at 1:23 pm
I cant believe I am saying this but how about remote backups :-
if hes ur boss he must come into office , and if he is on the same network...
June 29, 2011 at 1:17 pm
Usually the archival policy applies to few highly transactional table within a database, most of the time they have a column which can be used to sequence the rows that...
June 29, 2011 at 1:07 pm
CASE input_expression
WHEN when_expression THEN result_expression
[ ...n ]
[
...
June 29, 2011 at 12:57 pm
What kind of actions are being performed by the package ? Would they actually need to be manually executed ?
Do have service accounts for the package ?
June 29, 2011 at 12:53 pm
Elliott Whitlow (6/28/2011)
Jayanth_Kurup (6/28/2011)
If your on a budget there is always the SSRS route , assuming you know which system tables to query
I don't see this as much of a...
June 29, 2011 at 11:45 am
Remote backups require configuration changes such as setting Trace flag 1807 , having accounts with the right privileges , solid network , etc.
A simpler approach would be to take the...
June 28, 2011 at 1:52 pm
defaulting parameter is the same regardless of datatype
Were you facing any particular issue when you defaulted @b-2 to null ?
June 28, 2011 at 1:40 pm
You could pass the list of file name as part of a record set and then use the for each loop container.
June 28, 2011 at 1:25 pm
If your on a budget there is always the SSRS route , assuming you know which system tables to query
June 28, 2011 at 1:22 pm
Backups create the backup file on the local disk of the server on which the backup is being performed. You would need to transfer to bak file over the n/w...
June 28, 2011 at 1:19 pm
manning20 (6/28/2011)
June 28, 2011 at 1:16 pm
I found the below article on the usage of greater than vs greater than or equal to
http://www.lcard.ru/~nail/sybase/perf/18295.htm
The logic seems sound but i doubt if i will consider it when...
June 28, 2011 at 6:48 am
http://www-03.ibm.com/ibm/history/exhibits/builders/builders_codd.html
The company is great because of the people working in it. For a giant like IBM to stay relevant after a 100 years is a big thing. Very few achieve...
June 28, 2011 at 6:20 am
or you could use the sql publisher wizard under
C:\Program Files\Microsoft SQL Server\90\Tools\Publishing\1.4
SqlPubWiz.exe
its GUI which allows you to publish the procs directly to the target rather than script and...
June 28, 2011 at 6:01 am
Viewing 15 posts - 766 through 780 (of 961 total)